|
I am trying to rewrite a piece of HTML generated by Miva Shopping Cart which I can't edit anywhere. It's not the best way of doing things I know, but I need help to get my crackpot solution working in IE7.
I have a <div id="remove-div"> with the generated HTML inside it. I have written a JavaScript function that finds <select> boxes inside this <div> and then rewriting them to the page.
Firefox, the function works correctly and I can inspect the DOM to see it working. In IE7 however, the strings I search for with indexOf() return -1 because it can't find them. I noticed that if I take out the characters like ":<> then it will work.
Does anyone know how I can use these characters in IE7?
|