[jQuery] safari 2.0.4 crash with ajax
hello,
i'm not a sophisticated jquery user, but i don't get why Safari 2.0.4
is crashing (and Firefox 2 isn't) with this piece of code:
---
$(document).ready(function(){
$("#column2 a").click(function() {
$.get(this.href, function(html){
var column1html = $("#column1",html);
$("#column1").replaceWith(column1html);
});
return false;
});
});
---
after some testing i can say the crash seems to happen in
$("#column1",html);
anybody any idea how to solve that?
thank you very much,
fabian