jquery - Form fields are overlooked when loaded by ajax -



jquery - Form fields are overlooked when loaded by ajax -

i have created little calendar, has input each date. want load monthly calendar using ajax, when seek navigate, input field in calendar not getting hooked form.

$.ajax({ type: "post", url: "calendar.php", data: "&renderbydate=y&month=" + month + "&year=" + year, success: function(htmldata) { $("#calendar-content").html(htmldata); } }); <form action="calendar.manage.php" method="post" enctype="multipart/form-data" name="data" id="data" onsubmit="return vail();"> <input type="hidden" name="cmd" value="_calendar"> <div id="calendar-content"></div> </form>

this sample htmldata receiving..

july 2014<< prev     next >> sun mon tue wed thu fri sat 29 30 1 2 3 4 5

jquery ajax forms

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -