Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
开发者_JAVA百科 Improve this questionI created a menu with jQuery UI Accordion, walking without any problem. here is my problem: after closing the menu, I want to access it a different page.
Have you tried attaching a listener to the method or event that closes the menu?
Here are some JQuery event listeners
What you could try to do is to add a bind()
to the event that closes the menu. Once you do that you can just fire a window.location
call to redirect.
Look here for information on bind
精彩评论