How do I disable reading/eval script tags in a request?
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?
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
$('#divid').load(url, function( response ){
$(response).$('a').each(function(i){
// do stuff
});
});
Unfortunately, that doesn't work, what's the correct syntax for that?
4 matches
Mail list logo