Advertisement
Guest User

Untitled

a guest
Aug 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("p").click(function(){
  3. $('p').hide();
  4.  
  5. });
  6. $('select').change(function(){
  7. $(this).css("font-size","2em");
  8. });
  9.  
  10.  
  11. $('input').foucus(function(){
  12. $(this).css("border","1px soild red ");
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement