I am using so much jquery code in my php page and add text boxes using
var newTextBoxDiv = $(document.createElement('div'))
.attr("id", 'abc' + nextcount);
newTextBoxDiv.after().html(
);
echo "<script>window.location='abc.php?a=data&b=data1&c=data2'</script>";
finaly all text boxes with jquery code coming on browser after submitting.
please any body help to solve this problem .(after submitting -> script showing on browser)