when i test this page http://www.catalogues4u.com.au/ViewCategory.aspx?catID=119 im getting the above error. to replicate this issue visit the above page in ie7 and you will get the prompt. i did some search but couldnt find a way to resolve this issue. any help is apprecated.
THanks, Aneef
This usually occurs when you try to change the DOM of an element that hasn't been completely parsed yet. For example, this code will trigger an "Operation Aborted" error because the script tries to modify the div
that's still parsing:
<div id="a"> <script> document.getElementById('a').appendChild(document.createElement('div')); </script> </div>
To fix this potential problem, move scripts outside and after the code of the element you will be trying to work with.