Я хочу выбрать узел скрипта по идентификатору из вызова ajax get.
<script id="jqgrid_js" type="text/javascript">
...
</script>
Прием вызова:
$.get(url, function(results){
console.debug(results); //the jqgrid_js is included in the result
console.debug($('#jqgrid_js')); //this returns the node from the actual page
console.debug($('#jqgrid_js', results)); // in the result I can not select it
var jqgrid_js = $('#jqgrid_js', results);
//do the update
$('#jqgrid_js').html(jqgrid_js);
}, "html");
Мне интересно, почему тот же оператор select не возвращает узел, тогда как узел определенно включен в var "results".