Guest User

Untitled

a guest
Apr 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. [attr|="value"]
  2.  
  3. E[lang|="en"] Matches any E element whose "lang" attribute has a hyphen-separated list of values beginning (from the left) with "en".
  4.  
  5. [class|="ui"] {border-color:red}
  6.  
  7. <input type="text" name="my_input" id="my_input" />
  8.  
  9. <input type="text" name="my-input" id="my-input" />
  10.  
  11. <input type="text" id="begin_stand" name="begin_stand" value="10" size="8" maxlength="8">
  12.  
  13. beginst = document.getElementById('begin_stand').value;
  14. Error : object doesnt support this etc.
  15.  
  16. <input type="text" id="beginstand" name="beginstand" value="10" size="8" maxlength="8">
  17.  
  18. beginst = document.getElementById('beginstand').value;
  19.  
  20. <input type="text" id="beginstand" name="beginstand" value="10" size="8" maxlength="8">
  21. beginstand = document.getElementById('beginstand').value;
Add Comment
Please, Sign In to add comment