My question is complicated because of my medium language, but the problem does not seem bad. so...
I have a page where I show data, and I can add a date with AJAX as follows:
Ajax code:
<script type="text/javascript" language="javascript" src="ajax/ajax.js"></script>
<script type="text/javascript">
function kayit_ekle()
{
var sc='kelime_id='+document.form_kayitekle.kelime_id.value+'&anlam='+document.form_kayitekle.anlam.value;
JXP(1, "yenilericin","goster_kayitekle.php", sc);
}
</script>
nicEdit
<script type="text/javascript" src="http://js.nicedit.com/nicEdit-latest.js"></script> <script type="text/javascript">
//<![CDATA[
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
//]]>
</script>
Form
<?php echo "<form name='form_kayitekle' id='form_kayitekle' action='#' method='POST'>"; ?>
<textarea rows="14" cols="72" id="anlam" name="anlam" style="overflow:hidden;" > </textarea>
<input onClick="javascript:kayit_ekle()" type="image" src="images/devam_buton.png" name="submit" width="70" height="30"/>
</form>
On my page I have a form. Its name is: *form_kayitekle*
If I send this form to *goster_kayitekle.php*, the data is added to a database, and the new data is shown on the same page with AJAX.
PROBLEM : I recently started to use nicEdit editor, and now the AJAX is running normally, but is not adding dates.
clearly : after adding nicEdit editor to my page, AJAX isn't able to reach the form textarea, and isn't able to send data to goster_kayitekle.php.
so: how can I access the form textarea, which has nicEdit, with above AJAX?
I hope that I described the problem well. Thanks for helping.