I have developed a PopupMenu using a jQuery plugin.
When the HTML button is clicked the PopupMenu should appear.
Is it possible to do this instead when the page refreshes?
How would I do this in jQuery?
$(document).ready(function() { $('area').bind('click',function(e){ //popupcode }); });
Wouldn’t that do?