Guest User

Untitled

a guest
Aug 21st, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Using <strike> or <del> in a select box
  2. <select>
  3. <option value="1">Small Box 10.99</option>
  4. <option value="2">Large Box <del>19.99</del> 15.99</option>
  5. </select>
  6.  
  7. "19.99".replace(/d/g, function (digit) { return digit + "u0336" })
  8.  
  9. 0̶1̶2̶3̶4̶5̶6̶7̶8̶9̶
  10.  
  11. <!-- The style in the span tag is completely ignored -->
  12. <option value="1"><span syle="color:red">Small</span> Box 10.99</option>
  13.  
  14. <select>
  15. <option />
  16. <option value="1" disabled="disabled">Small Box 10.99 (Original Price)</option>
  17. <option value="1">Small Box 6.99 (Sale Price)</option>
  18. </select>
Add Comment
Please, Sign In to add comment