Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $(function() {
  2. var CountPropertySource = "current_rating";
  3. var AreaPropertySource = "current_rating";
  4. $("#tglSendValue").click(function(e) {
  5. if ($("#sendvalue").val() == "current") {
  6. $("#sendvalue").val("potential");
  7. CountPropertySource = "potential_rating";
  8. } else {
  9. $("#sendvalue").val("current");
  10. CountPropertySource = "current_rating";
  11. }
  12. alert(CountPropertySource);
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement