[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread Cursief
Well you're now using: $('.psDel').live('click', function() { var object = $(this).get(); delScreen(object); }); $('.psEdt').live('click', function() { var object = $

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread Cursief
It could be the fact you are using the "live" method from jQuery, so it will actually bind events along the way. You could try adding the event via "each" or something other then "live" good luck arkstone schreef: Situation: I have page with fewmages. Each image have two links dedicated to

[jQuery] Re: Performance Question: A Single "document.ready" or multiple?

2009-03-01 Thread Cursief
I don't think you will notice much difference. I'm using multiple in one project as well and didn't notice much change in speed. Rik Jeffrey B schreef: Hello, I'm new to jquery and I've been wondering if there are any performance implications to "packing" all of my jquery code into a single

[jQuery] jquery ui and ajaxForm work only once then does not submit

2009-03-01 Thread Cursief
Hi i'm stuck at the following. I have made a button that puts out a clear request for a form. The flow of this should be: dialog -> if yes -> use ajaxForm to submit -> reload section so in my document ready i have the following: (multiple buttons can exist) $(".blockClear").each(function (i) {

[jQuery] ajaxForm + jquery ui dialog + ajax won't work multiple times

2009-03-01 Thread cursief
Hi i'm stuck at the following. I have made a button that puts out a clear request for a form. The flow of this should be: dialog -> if yes -> use ajaxForm to submit -> reload section so in my document ready i have the following: (multiple buttons can exist) $(".blockClear").each(function (i) {