tags:

views:

539

answers:

1

If anyone knows TinyMCE well, do you know if it has built-in support for periodically calling its triggerSave function?

(This function copies it's content to its "parent" textarea. I want to observe said textarea for changes so I can implement autosave.)

Thanks

+1  A: 

You could easily do this yourself by using JavaScript's setTimeout() function.

See http://www.w3schools.com/js/js_timing.asp.

Wim Leers
This is what I've done actually - I was just wondering if TinyMCE had something built in.Thanks