I want to put a function call in my pages called enableTinyMCE(); In that function I want to see if there are any textarea's in my page and if so do the tinyMCE.init() function. How do I detect if there are any textarea elements in the page?
feedback
|
OR
Read this, from the FAQ: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_test_whether_an_element_exists.3F | |||
|
feedback
|
|
To expand on karim79 answer. From the jQuery docs page: Note: It isn't always necessary to test whether an element exists. The following code would show the item if it exists, and do nothing (no errors) if it did not. Which that means is that you can just do:
Edit: There is actually a jQuery plugin being developed for this purpose. I would download and try out the plugin and contribute to it's development if you can. | ||||
|
feedback
|
|
It is worth noting that the functionality you are looking for can be handled by TinyMCE itself: If you set the
Conversely, you could tell TinyMCE to convert only textareas that match a CSS class name by using the
http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/mode | |||
|
feedback
|
|
A jQuery selector always returns an array even if no matching elements are found. This means that you need to check the length. Try this instead.
| |||
|
feedback
|
|
I have done the following as suggested however I still only want to call enableTinyMCE if there are textareas in my page. I cannot call this function in document.ready. See Google! Any ideas?
the tinymce.init needs to be called outside of documentready but $('textarea').length is always zero outside of documentready. Help! | |||||||||||
feedback
|
|
This is my solution
And to enable tinyMCE I have done this
EnableTinyMCE does this
} | |||
|
feedback
|