Skip to content

Instantly share code, notes, and snippets.

@imikay
Created February 7, 2012 08:31
Show Gist options
  • Save imikay/1758263 to your computer and use it in GitHub Desktop.
Save imikay/1758263 to your computer and use it in GitHub Desktop.
Querylet
javascript:
(function (window, document)
{
var rLeftTrim = /^\s+/;
var rRightTrim = /\s+$/;
var prom = prompt('Please input order number');
var cleaned = prom.replace(rLeftTrim, '').replace(rRightTrim, '');
if (cleaned)
{
window.open('http://gaohonghong.gaohonghong.hc.hc.sf/wgpay_dev.php/pay/testTrans?o=' + cleaned, '_newtab');
}
})(window, document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment