i am using drupal and ihve successfuly loaded a node creation form using jquery load function
<div id='test'></div>
<a href='#' id='test2'>test</a>
so when clicking link it will load form
var ajax_load = "loading...";
var loadUrl = "NODE_CREATE_PATH";
$("#test2").click(function(){
$("#test").html(ajax_load).load(loadUrl);
});
now my problem is all scripts like date popup is not working for this loded form . someone suggested me using http://api.jquery.com/live/ , but i dont know how to use.
please help
using Drupal.attachBehaviors() we can 🙂
example