I'm using elRTE editor. but i don't want to use default elRTE menu. i built a graphical and favorite menu with anchor tags and css in my HTML page. my menu is on the top of my page and my editable area is in the middle of the page (i want to menu and editable be separated togather). so, i want to use my favorite menu instead of default elRTE menu. i want to know how can i use elRTE functions (like BOLD, ITALIC, TABLE CONSTRUCTING and...) with anchor tags in my page.
in other word, i want to BOLD my selected text by clicking the
<a href="#" name="bold">BOLD</a>
tag, with elRTE functions... .
can i call (Bold, italic, table construting...)functions with the following code?
$('a[name=Bold]').click(function(e) {
.
//your suggested code to call elRTE functions (for bolding text for example) (***)
.
});
if your answer is "yes", what do you suggest for coding in (***) part !
help me plz... .