I've designed a navigation menu that triggers a jquery dialog box to open when a link is clicked.
My CSS styling for the links includes:
.navigationLinkButton:active { background:rgb(200,200,200); }
To attach the dialog box, I simply use:
$("#link").click(function() {$(this).dialog("open")});
Every now and then (approximately every 4-5 clicks), clicking on a link results in just the background color changing without the dialog box opening. However, clicking the link again will successfully open the dialog box. Any thoughts on why this issue might be occurring?