Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <div class="btn-group btn-group-justified param-widget param-widget-buttongroup">
  2. <div class="btn-group" role="group">
  3. <button type="button" class="btn">Option A</button>
  4. </div>
  5. <div class="btn-group" role="group">
  6. <button type="button" class="btn">Option B</button>
  7. </div>
  8. <div class="btn-group" role="group">
  9. <button type="button" class="btn">Option C</button>
  10. </div>
  11. </div>
  12.  
  13. $(".param-widget-buttongroup .btn-group button").on("click", function()
  14. {
  15. // Do some stuff here - send messages to the device I'm controlling, etc.
  16. });
Add Comment
Please, Sign In to add comment