Guest User

Untitled

a guest
May 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_button('my_sections', 2, {
  2. "this_class" : "click_button",
  3. "text" : "CLICK ME"
  4. })
  5.  
  6. add_event('click_button', 1, {
  7. "type" : "click",
  8. "function" : "my_function()"
  9. })
  10.  
  11. function my_function() {
  12. alert('hello')
  13. }
  14.  
  15. function my_function() {
  16.  
  17. alert('hello')
  18.  
  19. style_button('click_button', 1, {
  20. "pointer-events" : "none",
  21. "opacity" : 0.5
  22. })
  23.  
  24. }
Add Comment
Please, Sign In to add comment