Cleans URL's from various popular sites.
< Feedback on General URL Cleaner
Fix for eBay and orig_cvip=trueorig_cvip=true is the querystring parameter required for the "see original listing" link to work on completed auctions.Line 179 should use this:
orig_cvip=true
a.search.replace(/&/gi,'?').match(/\?orig_cvip=[^?]+/)||'')
The /&/gi will make sure all ampersands are replaced with question marks.
/&/gi
Sign in to post a reply.
Fix for eBay and orig_cvip=true
orig_cvip=true
is the querystring parameter required for the "see original listing" link to work on completed auctions.Line 179 should use this:
The
/&/gi
will make sure all ampersands are replaced with question marks.