[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-05-10 Thread Zeeshan Khan
MorningZ what should i do now about my tab problem? Regards; Zeeshan Ahmed Khan On Fri, Apr 24, 2009 at 5:47 PM, Zeeshan Khan khan.zeesha...@gmail.comwrote: so what shud i do to solve my prblm? Regards; Zeeshan Ahmed Khan On Fri, Apr 24, 2009 at 3:58 PM, MorningZ morni...@gmail.com

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-24 Thread MorningZ
I debugged the code find htat its crashing at this line : *head.insertBefore( script, head.firstChild );* IE doesn't understand that you are dealing with a DOM node, hence the .firstChild or .insertBefore isn't supported for use at that point On Apr 24, 12:23 am, Zeeshan Khan

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-24 Thread Zeeshan Khan
so what shud i do to solve my prblm? Regards; Zeeshan Ahmed Khan On Fri, Apr 24, 2009 at 3:58 PM, MorningZ morni...@gmail.com wrote: I debugged the code find htat its crashing at this line : *head.insertBefore( script, head.firstChild );* IE doesn't understand that you are dealing with

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-23 Thread Zeeshan Khan
Check this Link U'll knw the Problem that i'm talking about. http://aspspider.info/KhanZeeshan/ Check it IE6 IE7 i chekced it in IE8,FF 3.0 Chorme safari ti works gr8 in All browsers xcpt IE6 IE7. On Thu, Apr 23, 2009 at 8:47 AM, Zeeshan Khan khan.zeesha...@gmail.comwrote: i validated my

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-23 Thread Jonathan Vanherpe (T T NV)
That is pretty weird, especially since the error happens on a line that doesn't exist. The IE js debugger proved useless too. It also loads the wrong page. As far as i can tell (using Fiddler), the code tries to load Page1.aspx , but instead of putting that in the tab, it embeds the whole

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-23 Thread Zeeshan Khan
I debugged the code find htat its crashing at this line : *head.insertBefore( script, head.firstChild );* * * it first checks these 2 lines *if ( !jsonp )* *success();* * * then it cums at *head.insertBefore( script, head.firstChild ); * crashes...Hope this helps * *Regards; Zeeshan Ahmed Khan

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
KhanZeeshan wrote: Hi all, Problem that i'm facing is that i'm loading external ASPX pages in AJAX tabs..its working great in FF3.0,Safari,Chorme IE8 but it gives Object doesn't support this property or method error in IE6/IE7 when ever a new page is about to load in tab it also doesn't

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
It seems like your code depends on some modules other than jquery itself, and i don't think all the relevant code is in there. I think it would still be better to post a link to the page you made, or even better, reduce it to a test case that shows the problem. Does your html validate at

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread KhanZeeshan
What do you mean by VALIDATE?Give me your EMail ID i'll mail you the whole code. On Apr 22, 2:59 pm, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: It seems like your code depends on some modules other than jquery itself, and i don't think all the relevant code is in there. I think it

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread KhanZeeshan
JQuery Code: code function Tabs(jQuerySelector) { $(jQuerySelector).tabs(); this.bag = new Array(); this.add = function(title, uniqueHash) { var deleteString = 'a href=#img border=0 class=tab_delete src=Images/delete-img.png onclick=tabs.remove('; deleteString += ';

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread MorningZ
What do you mean by VALIDATE? http://www.google.com/search?q=html+validation As for your IE error, usually that means that the type of object isn't what your code is expecting. but as Jonathan points out, it's hard to help more than that without seeing the code fail On Apr 22, 6:10 am,

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
Fact is that the error is quite generic. I think I've even gotten it for forgetting to use a ; at the end of a line. Jonathan MorningZ wrote: What do you mean by VALIDATE? http://www.google.com/search?q=html+validation As for your IE error, usually that means that the type of object isn't

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Zeeshan Khan
i validated my html Javascript as well...but there was no error..i don't know any free asp.net web hosting site...if u know any please let me know i'll upload my site there..then u guys can check it thoroughly.. On Wed, Apr 22, 2009 at 6:02 PM, Jonathan Vanherpe (T T NV) jonat...@tnt.be