Aaron Weier Report post Posted September 29, 2010 Hi All, I need to use a "+" symbol and javascript is literally eating it up. I send in the variable with the "+" symbol and when I test the variable in javascript the "+" is gone! I've tried the replace function but no help: strURL=strURL.replace("+", "%2B"); Please help!! thanks! Aaron Share this post Link to post Share on other sites
Aaron Weier Report post Posted September 29, 2010 Hello again, it appears that i've fixed the problem by simply switching the following lines of javascript to look as follows: strURL = strURL.replace("+", "%2B"); //URLEncode it - NECESSARY. strURL = escape(strURL); Aaron Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted September 30, 2010 Hi Aaron, We are glad that your issue is resolved. Thanks for sharing your idea. Keep smiling and keep FusionCharting. Share this post Link to post Share on other sites