Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. // Yes button binding
  2. $("#ratingYes").bind("mousedown",function(){
  3. MscomCustomEvent(
  4. "ms.title=yes",
  5. "ms.cmpgrp=feedbackform"
  6. );
  7. });
  8.  
  9. // No button binding
  10. $("#ratingNo").bind("mousedown",function(){
  11. MscomCustomEvent(
  12. "ms.title=no",
  13. "ms.cmpgrp=feedbackform"
  14. );
  15. });
  16.  
  17. // Submit button binding
  18. $("#ratingSubmit").bind("mousedown",function(){
  19. // grab the max character count, and the current character count
  20. // store the difference in feedbackCharacterCount
  21. // if either pull fails, feedbackCharacterCount should return NaN
  22. var feedbackCharacterCount = (Number($("#ratingText").attr("maxLength")) - Number($("#feedbackTextCounter").text()));
  23. MscomCustomEvent(
  24. "ms.title=submit",
  25. "ms.feedbackid=" + feedbackCharacterCount,
  26. "ms.cmpgrp=feedbackform"
  27. );
  28. });
  29.  
  30. // Skip this button binding
  31.  
  32. $("#ratingSkipThis").bind("mousedown",function(){
  33. MscomCustomEvent(
  34. "ms.title=skip this",
  35. "ms.cmpgrp=feedbackform"
  36. );
  37. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement