I want to use the 'blur' event in the jQuery text plugin. http://jqueryte.com
$ ('textarea'). jqte ({
blur: function (elem) {
// ID textarea?
// Content editor?
}
});
The function of the blur, I would like to determine the content and the ID of the textarea.
Can you help me with an idea?