How To Trigger Focusout Event On A Ul Element?
I have a plugin that changes the look of select html tag on all browser. I'm trying to make the new styled set of elements behave like a normal select tag. I'm almost there, but I
Solution 1:
Try out the jQuery outside events plugin Will let you do something like:
$(this).bind( "clickoutside", function(event){
$(this).hide();
});
Post a Comment for "How To Trigger Focusout Event On A Ul Element?"