Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $("#topic_content_input[data-placeholder]:not([data-div-placeholder-content]):before").css({"color":"blue"});
  2.  
  3. <div id="topic_content_input" contenteditable="true" data-placeholder="I want to change my color on click " ></div>
  4.  
  5. <style>
  6. #topic_content_input[data-placeholder]:not([data-div-placeholder-content]):before {
  7. content: attr(data-placeholder);
  8. float: left;
  9. margin-left: 2px;
  10. color: rgba(134,134,134,0.6);
  11. }
  12. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement