Re: [fw-general] IE issues and i have no idea

2009-05-11 Thread dele454
Thanks Matt. The JSlink was very useful and helpful. But the problem still persists. I have tried a couple of things; 1. I have validated all my pages to make sure that all the tags are closed 2. check all my js code with JSLint for any errors 3. used the defer attribute of the js declaration

[fw-general] IE issues and i have no idea

2009-05-06 Thread dele454
Hi, Whenever i browse the site i am working on at the moment using IE, i get the error below. I have tried to pin it on something but i dont know when it is giving such a message in IE. I have checked everything in my bootstrap but i cant find anything out of the ordinary there. Please i need

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread Mark Wright
Which versions of IE are you testing? Anyways, this wouldn't be a ZF problem. It might be javascript. We have seen rare instances where loading javascripts in the wrong order can cause IE to show a similar error (might be the same error - I don't remember what it said). I think the best solution

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread dele454
Hi Mark, Long time. How are you doing? Thanks for the reply. Well i am using ver 7.0.5730.11. You made a valid point there so i checked my source file and discovered the custom dojo build was loading after my js scripts. So i changed it to headScript()-prependFile() instead. - so that was

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread Cameron
This is caused by Javascript trying to manipulate the page content before the page has completely loaded, other browsers handle it fine, IE doesn't. It's a well known problem. If you google the error message you'll find heaps of info, but the basic gist of it is that you need to delay the

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread dele454
HI, Thanks for the reply.I was just about to post this: I noticed that if i remove my js declarations the page loads fine in IE without that Error - which simply butresses your point that the error is truly from js. Thanks for this mate. I am going to google it and see how i can apply the

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread dele454
Apparently it is an IE7 bug and it can be a result of the following reasosn listed here: 1. http://support.microsoft.com/kb/927917#more_information 2. http://www.fergusweb.net/coding/ie-operation-aborted-javascript-issues/ So i tried no 2. I left my js declaration and took out the flash header

Re: [fw-general] IE issues and i have no idea

2009-05-06 Thread Matthew Weier O'Phinney
-- dele454 d...@killerinstinct.co.za wrote (on Wednesday, 06 May 2009, 02:40 PM -0700): Thanks for the reply. Well i am using ver 7.0.5730.11. You made a valid point there so i checked my source file and discovered the custom dojo build was loading after my js scripts. So i changed it to