I am using .live() in jQuery 1.3.2 to assign a dynamic click event to multiple Select lists. When one of the lists is clicked on I would like to have that particular list to no longer be "clickable".
Here's the issue. I currently assign the click function in .live() with an anonymous function, so the only thing I have been able to do so far is $(this).die('click') when a Select is clicked on. This, of course, kills the event for ALL my Selects. Does anyone know of a way to do this without creating a separate, named function for the die() function to use later? Thanks, Laker