I've gotten pretty far already writing out all my code. I'm not entirely sure if you would need to see it to get an idea.
Basically I'm using the basic:
$("#formToLoadPageInto").load("thePageToLoad.php").fadeIn("fast");
Now, that works and all, but the page loaded has a form. It works the first time (submits the form) before having to use that load, but afterwards (when it's reloaded with that code) the form on the page that was reloaded doesn't submit anymore.
I've read that you shouldn't place things like that in the $(document).ready(function(){ body, but it actually remained outside of that this whole time. So I'm really not sure what could be wrong.
Everything is based on not refreshing the page.. I've managed to accomplish that so far, but this problem (and a few related) are holding me back! Hope someone can help me out..
EDIT:
Maybe this will help:
I have 2 different divs - "post comment" and "posted comments".
The post comment div has a form to submit a comment. It's a php page loaded into a div. This works fine. When the form is submitted, it uses this code:
$("#newpost").validate({
debug: false,
submitHandler: function(form) {
// do other stuff for a valid form
$.post('postthought.php', $("#newpost").serialize(), function(data) {
$('#hideload').html(data);
});
}
});
After that runs, I try to reload the posted comments div (which contains a form, in php, that loads all the posted comments to view and delete) with the
$("#formToLoadPageInto").load("thePageToLoad.php").fadeIn("fast");
as stated before. It works and shows the new content, but I can't use the form on THIS page to view or delete the comments..
Hope that's not too confusing..
"#formToLoadPageInto"? And is"#formToLoadPageInto"a<form>element as the ID suggests? In other words, are you placing a<form>inside a<form>? – squint Jan 21 '12 at 17:10