[jQuery] script tags in Ajax request

2008-12-18 Thread Namotco
How do I disable reading/eval script tags in a request?

[jQuery] Re: history plugin

2008-12-18 Thread Namotco
I need to implement this myself. I noticed today that there is a jQuery UI history planned: http://docs.jquery.com/UI/Roadmap Does anyone know if work has started on this?

[jQuery] Re: syntax for $(response).$('a').each()

2008-12-18 Thread Namotco
Here is what I'm trying to do: $("#MTB").load(url +" #content", function(data) { $("a", data).attr("onclick",function (arr) { var href=this.attr('href'); if (h

[jQuery] syntax for $(response).$('a').each()

2008-12-18 Thread Namotco
$('#divid').load(url, function( response ){ $(response).$('a').each(function(i){ // do stuff }); }); Unfortunately, that doesn't work, what's the correct syntax for that?