Ja1meMartin
1/5/2017 - 9:16 AM

When on an an Amazon page click link to be prompted for a number to filter items at or above your chosen discount percentage.

When on an an Amazon page click link to be prompted for a number to filter items at or above your chosen discount percentage.

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<a href="javascript: 
var percent = prompt('enter a lower-bound percentage for the discount');
window.location=window.location + '&field-pct-off=' + percent + '-';
">Amazon</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<a href="javascript: 
var lower = prompt('enter a lower-bound percentage for the discount');
var upper = prompt('enter an upper-bound percentage for the discount');
window.location=window.location + '&field-pct-off=' + lower + '-' + upper;
">Amazon2</a>
</body>
</html>