Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-04-2013, 08:37 PM   PM User | #1
quadrant6
Regular Coder

 
quadrant6's Avatar
 
Join Date: Aug 2002
Location: New Zealand
Posts: 150
Thanks: 0
Thanked 0 Times in 0 Posts
quadrant6 is an unknown quantity at this point
How to call custom method in this plugin example

I'm using the jQuery based WYSIWYG editor Redactor and in trying to follow along with their simple docs, how would you call the method 'your_method' in their example here?

http://imperavi.com/redactor/docs/creatingplugins/


They don't have an example. All I want to do is put a button on the page and then when that button is clicked, trigger off my own custom method.

I'm sure this is an easy one for any experience JS coder. Insight appreciated!
quadrant6 is offline   Reply With Quote
Old 01-07-2013, 12:41 PM   PM User | #2
Redcoder
Regular Coder

 
Redcoder's Avatar
 
Join Date: May 2012
Location: /dev/couch
Posts: 309
Thanks: 2
Thanked 46 Times in 45 Posts
Redcoder has a little shameless behaviour in the past
Give that initializer function a name and then call it:
PHP Code:
    <script type="text/javascript">
    $(
document).ready(
    function 
yourFunctionName()
    {
    $(
'#redactor').redactor({
    
plugins: ['fullscreen''advanced']
    });    
    }
    );
    
</script>

<button onClick="yourFunctionName()">CLICK ME TO INTIALIZE</button> 
__________________
For professional Hosting and Web design.....


NetEssentials.co.uk
Redcoder is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:50 AM.


Advertisement
Log in to turn off these ads.