javascript - URL Encoding issues - with decimals -
i have added comments in code each function trying achieve here. using escape
match value in url (where encoded.) able handle values except values decimals. example if have:
var s = "9%252e5|red|blue"; var itemtoremove = escape("9.5"); //escape match value in 's'.
as '.' can not encoded/escaped not able match 1 url, ideas on how deal kind of issue.
Comments
Post a Comment