Not signed in (Sign In)

Categories

Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.

Help keep Vanilla free:
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
  1.  # 1
    We have the Format comments as radio buttons.
    How do i add an onlick event to those radio buttons.

    What I want to do is have a radio button for the WYSIWYG toolbar. so you can switch between pain htmlformatter or FCKeditor or Textile. etc
    •  
      CommentAuthor[-Stash-]
    • CommentTimeApr 29th 2007
     # 2
    If you're using jQuery then something like this should do the trick:$(document).ready(function() {
    $('input#Radio_Text').click(function() {
    //do stuff;
    });
    $('input#Radio_Html').click(function() {
    //do stuff;
    });
    });
Add your comments
    Username Password
  • Format comments as