Hello
I create the Window using javascript through this code:
$('#win').window({
width:600,
height:400,
modal:true
});Now I need to create the form inside this window content. But I don't want to load the html form using ajax call from server.
Is there any way to programmatically create the form with its fields and submit function and append that to the window content?
Thank you very much in advance!