[jQuery] Re: Click event broken by AJAX - explain please?

2008-12-07 Thread donb
Hmmm, yes it does. I just did 'un-do' a zillion times, back to where I was at the outset. Seems I had begun with $('textarea').load() Intending to load the textarea with data but it didn't work (FCKeditor assigned to the textarea). I changed that to $('textarea').get(url, {file: data},

[jQuery] Re: Click event broken by AJAX - explain please?

2008-12-06 Thread ricardobeat
Doesn't this work? $(a).click(function() { var self = this; $.get($(self).attr('href'),function(html){ // put the html into a textbox }); return false; }; On Dec 6, 5:00 pm, donb [EMAIL PROTECTED] wrote: Having read the handful of mentions I could find, the underlying

[jQuery] Re: Click event broken by AJAX - explain please?

2008-12-06 Thread Joe
I'm having the exact same issue, but ony in IE 6/7, using getScript (). I'm wondering if it has to do with sending a GET request and IE is funky about it??? On Dec 6, 7:16 pm, ricardobeat [EMAIL PROTECTED] wrote: Doesn't this work? $(a).click(function() {     var self = this;