[jQuery] To the Moderator

2008-04-15 Thread lcordier
Hi Is there something wrong with my membership settings ? Non of my questions have made it to the list yet. Regards, Louis.

[jQuery] Binding click event handlers to dynamically added links

2008-04-15 Thread lcordier
Hi, I am trying to bind Ajax click event handlers to links that I have dynamically appended to the DOM tree. Basically I have: var html = 'text' $("#table > tbody").append(html); If I try to add click handlers to these anchor tags, they don't work. $("a").each(function(i, dom_element) {

[jQuery] jquery.form.js is not working under IE6/7.

2008-04-15 Thread lcordier
I am using Ajax form posting. var options = { dataType: 'xml', beforeSubmit: post_request, success: response_xml }; $("#form").submit(function() { $(this).ajaxSubmit(options); // !!! Important !!! // always return false to prevent standard browser submi