I want to download a wiki-format preset into a textarea with jquery:
<form><textarea name="wikitext" id="submittextarea"></textarea></form>
I use this script:
function download_to_textbox(url, el) {
$.get(url, null, function (data) {
// this is not reached, why???
console.log("test")
el.val(data);
}, "text");
}
url='http://freifunk.in-kiel.de/mediawiki/api.php?action=parse&prop=wikitext&page=Template:Node';
download_to_textbox(url, $('textarea[name="wikitext"]'));
there is nothing in the textarea, what am I doing wrong?