Advertisement
Guest User

Untitled

a guest
May 28th, 2015
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. jQuery(function() {
  2. var amount = getURLParameter('amount');
  3.  
  4. if (isFinite(String(amount))) {
  5. // Do allthethings here.
  6. }
  7. });
  8.  
  9.  
  10. function getURLParameter(name) {
  11. return decodeURI(
  12. (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
  13. );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement