I have created a navigation menu where, when clicking on a link, a jquery dialog box opens.
On these same links in my css I have:
.navigationLinkButton:active { background:rgb(200,200,200); }
The dialog box is attached simply with:
$("#link").click(function() {$(this).dialog("open")});
Occasionally (about every 4-5 clicks) when a user clicks the link the dialog box does not open, and only the background color of the link changes. Clicking the link again will open the dialog box. Any ideas why this is happening?