I have this selector attempt:
<textarea tinymce="basicoptions"></textarea>
<textarea tinymce="advancedoptions"></textarea>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$('textarea[tinymce]').each(function(){
var tinymceopts = $(this).attr('tinymce');
$(this).tinymce(tinymceopts);
});
</script>
Simply, I'm using my custom attribute, called tinymce to hold a string, which is the name of a variable I store in a javascript file.
(example inside javascript file: var basicoptions = { ....stuff.... }
And inside that variable holds the custom options for the tinymce editor.
The code above does not work. But if I replace the $(this).tinymce(tinymceopts); with one of the actual variables: $(this).tinymce(basicoptions); it works fine.
I actually have 4 variables to work with, but I've show only 2 above.
Is there a better way to do this?