[jQuery] Re: script killing IE

2007-06-04 Thread Shelane Enos
The blur actually does work. All I needed the blur to do was not show that box around the clicked link. I have now completely reconfigured this script. I think I was making it too difficult. This now works in IE: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(func

[jQuery] Re: script killing IE

2007-06-04 Thread Benjamin Sterling
Shelane, First, you should be able to chain a few of your functions, ie: $(this).unbind().click(function()... Secondly, I may be misunderstanding the purpose of the .blur function but I don't think it will work the exact way you are using it: "Note: This does not execute the blur method of the u

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane
So I have determined that it's dying when I unbind and bind a new click function to that item. Where it starts: $(this).unbind();$ (this).click(function(){... When I commented this out, it works (of course it doesn't have that second click function). On Jun 4, 10:28 am, Shelane <[EMAIL PROTECTED