Guest User

Untitled

a guest
Jun 20th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Survey = {
  2. getSurveyCategoryMenu: function() {
  3. if($('survey_successful_false').checked == true) {
  4. new Ajax.Request('/surveys/menu/negative', {method: 'get'});
  5. }
  6. else {
  7. new Ajax.Request('/surveys/menu/positive', {method: 'get'});
  8. }
  9. }
  10. }
  11.  
  12. Event.addBehavior({
  13. '#survey_successful_false:click, #survey_successful_true:click': function() {
  14. Survey.getSurveyCategoryMenu();
  15. }
  16. })
Add Comment
Please, Sign In to add comment