I've faced a problem recently, in my web app, I have a number of hidden inputs on the page to store (when generated on server) values for latter usage (on client size), one of them is:
In Opera and IE (wow), it works great and I successfelly recieve "part_one\\part _two" when calling:
but in FF I get only "part_two"? any suggestions? (Except for pre-replaceing \\ to smth else before setting it as a value :) )
Is that my bug or their?
Code:
<input name="my_id" type="hidden" value="part_one\\part_two">
Code:
window.alert(document.getElementById('my_id').value);
Is that my bug or their?
Comment