I am making an auto-update function for my form since my users are taking longer to fill out the form than my server session allows. Here it is in a nutshell:
//jQuery function to grab the form elements
$(document).ready(function(){
setInterval (function(){
$.post("AutoUpdate.php",
{
ID: $("#ID").val(),
//other form elements redacted for brevity
Description: $("#Description").val(),
});
}, 300000); //every 5 min
});
this function calls my php page which inserts the content into a db. Works perfectly with all other form elements
The problem is that once I use the ckeditor class on my textarea I can't figure out a way to identify it so that jQuery can grab the content. Any suggestions or documentation would be appreciated.
TIA - Greg