Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("#searchSub").click(function() {
  3. $(this).toggleClass("activeDrop");
  4. }
  5. )
  6. });
  7.  
  8.  
  9. css here
  10.  
  11.  
  12. #searchSub {
  13. height:30px;
  14. width:25px;
  15. background-image:url(files/search_new.png);
  16. background-position:26px 0px;
  17. margin-left:-4px;
  18. float:right;
  19. }
  20.  
  21. .activeDrop {
  22. background-position:26px 93px;
  23. }
Add Comment
Please, Sign In to add comment