Advertisement
Guest User

CF7

a guest
Sep 25th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.fn.wpcf7NotValidTip = function(message) {
  2.         return this.each(function() {
  3.             var into = $(this);
  4.  
  5.             $theParent = into.parent("span");
  6.             $parentInp = $theParent.parent("input");
  7.  
  8.             into.find(':input').css('border-color', '#ff0000');
  9.  
  10.             into.find(':input').mouseover(function() {
  11.                 into.find(':input').css('border-color','#cccccc');
  12.             });
  13.             into.find(':input').focus(function() {
  14.                 into.find(':input').css('border-color','#cccccc');
  15.             });
  16.         });
  17.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement