submitting a form in FF or chrome works fine IE dosnt work
- <script type="text/javascript" src="system/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$('#setPAGE').submit(function(){$('input[id=subaddPAGE]', this).attr('disabled', 'disabled');});
function grabPAGE ( ) {
var page_title = $("#page_title");
var page_desc = $("#page_desc");
var page_content = $("#page_content");
var url = "system/JQ_addpage.php";
if (page_title.val() == "") {
$("#IAC").html('<div id="JQUERY_processor_container_RED" align="center"><img src="images/jquery_icons/warning.png" width="16" height="16" alt="passed" /> You need to give this page a title</div>').show().fadeOut(5000);
} else if (page_desc.val() == "") {
$("#IAC").html('<div id="JQUERY_processor_container_RED" align="center"><img src="images/jquery_icons/warning.png" width="16" height="16" alt="passed" /> You need to give this page a description</div>').show().fadeOut(5000);
} else {
$.post(url,{ page_title: page_title.val(), page_desc: page_desc.val(), page_content: page_content.val()} , function(data) {
$("#IAC").html(data).show().fadeOut(5000);
$("#IAC").html('<div id="JQUERY_processor_container_GREEN" align="center"><img src="images/jquery_icons/check.png" width="16" height="16" alt="passed" /> This site page has been sucessfully created</div>').show().fadeOut(5000);
// reset full form data after forum submission
document.getElementById("setPAGE").reset();
});
}
}
</script>
this works fine in Firefox and Chrome, safari
this is sending the form information to an external file to process
but IE does not pass this information, some help would be great thanks