I just added Jeditable plugin to my website. The plugin is available here: http://www.appelsiini.net/projects/jeditable
Everything works fine but I use "loadurl" parameter to load text for editing and I would like to display some text or image while text is loading.
I see the "loadtext" parameter in the defaults and as I understand "Loading..." should be displayed when I click on the text to edit it. Unfortunately, I don't see anything.
$.fn.editable.defaults = {
loadtext : 'Loading...', //Text to display while loading external content.
...
...
};
How can I display "loadtext" or image from "indicator" parameter while text is loading into textarea?
Thank you.