Guest User

Untitled

a guest
Jan 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(function() {
  2. $('div.menu').hide();
  3. $("img#menu").click(function () {
  4. $("div#menu").toggle("slide", {direction: "right"}, 500);
  5. });
  6. });
  7.  
  8. $(function() {
  9. // here you are searching by class name, that is going to eat CPU
  10. $('div.menu').hide();
  11. $("img#menu").click(function () {
  12. // here you are doing a JavaScirpt animation, eating more of the CPU
  13. $("div#menu").toggle("slide", {direction: "right"}, 500);
  14. });
  15. });
Add Comment
Please, Sign In to add comment