nathaniellord / slidemenu

A jquery menu plugin for side menus that have fun slide interactions
MIT License
19 stars 12 forks source link

Is it possible to open this menu from jquery itself instead of onclick #8

Open totomtornado opened 6 years ago

totomtornado commented 6 years ago

I would like to open this menu sometimes from code. Any help would be appreciated!!

totomtornado commented 6 years ago

Also i would love an event handler for detecting when menu items open...

totomtornado commented 6 years ago

Hmmm... i may be overthinking this.

I think i will just use my own jquery to detect clicks

totomtornado commented 6 years ago

I am not familiar with prototyping code but I believe I can use this...?

SlideMenu.prototype.isOpen = function() { return this.$element.hasClass(CLASSES.ACTIVE); };

Then just use something like...

$(".slide-menu").slidemenu.isOpen();

Then that would return something if open, right?