Guest User

Untitled

a guest
Oct 18th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $(document).ready(function() {
  2. if(!Modernizr.input.placeholder){
  3. $("input").each(
  4. function(){
  5. if($(this).val()=="" && $(this).attr("placeholder")!=""){
  6. $(this).val($(this).attr("placeholder"));
  7. $(this).focus(function(){
  8. if($(this).val()==$(this).attr("placeholder")) $(this).val("");
  9. });
  10. $(this).blur(function(){
  11. if($(this).val()=="") $(this).val($(this).attr("placeholder"));
  12. });
  13. }
  14. });
  15. }
  16. });
Add Comment
Please, Sign In to add comment