url-masking

URL masking in JavaScript

I currently have the following JavaScript function that will take current URL and concatenate it to another site URL to route it to the appropriate feedback group: function sendFeedback() { url = window.location.href; newwin = window.open('http://www.anothersite.com/home/feedback/?s=' + url, 'Feedback'); } Not sure if this is ...