Hello
I notice a difference between jQuery 1.3 and 1.4 in the jQuery method with context
This is a sample code
testStr="<div id='container'><div id='divTestId'>test<script>alert('test')</script></div></container>";
var testResult = $("#divTestId", testStr);
in 1.3: testResult[0].innerHTML = "test<script>alert('test')</script>"
in 1.4: testResult[0].innerHTML = "test"
I'm not understand why the script tag disappear.