[jQuery] Re: IE problem

2010-01-16 Thread Valerij
Why do you think that? Because only the first tab stops working, the other 2 tabs keep working, css wise they are not different at all.. On Jan 16, 3:02 am, Nivanka wrote: > This is CSS more than javascript I think. Try to absolute position the > popups / and position them with bottom:0px; and th

[jQuery] Re: IE problem with each function

2009-04-15 Thread Karl Swedberg
On Apr 14, 2009, at 10:47 PM, Zhx wrote: here is my code, it works fine in FF, but in IE, the "index" message did not popup. Anyone could give me a suggestion to figure out this? jQuery("#demoform dt").each(function(index,domEle){ if (jQuery(domEle).text() == "ISSN:") {

[jQuery] Re: IE Problem Animating opacity on a Alpha PNG

2009-03-29 Thread Corgalore
I'm having the same problem. I noticed it while using FaceBox. During the fadeout the borders fade to black before fading out. The same thing happens when I swap the border pngs for my own. Does anyone know a workaround for this? On Feb 27, 5:13 am, Liam Potter wrote: > I've come across a probl

[jQuery] Re: IE Problem Animating opacity on a Alpha PNG

2009-03-04 Thread nicholas
Hi! I also have the same problem on IE7 when the page loads it seems that everything is alright but when the .animate() runs it keeps the 100% transparency and loses the rest of alpha 0-99% transparency.. It is very strange.. I don't know if its only IE bug or also jQuery's .animate() implementati

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Ricardo Tomasi
Not really - after all I was wrong too :D I didn't notice the other closing braces under "quoted text" in the OP. cheers, - ricardo On Jan 14, 2:56 am, Karl Swedberg wrote: > good eye, Ricardo! thanks for the back up. :-) > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learn

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Sagar Arya
Geees.. Cheers ! Aryan On Thu, Jan 15, 2009 at 5:19 PM, Liam Potter wrote: > > I see it now, and I also noticed you put it in style tags, you should use > script tags > > > > That's how you would include a script. > > Sagar Arya wrote: > >> Oops.. tat was a mistake.. "double quotes" i must

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Liam Potter
I see it now, and I also noticed you put it in style tags, you should use script tags That's how you would include a script. Sagar Arya wrote: Oops.. tat was a mistake.. "double quotes" i must notice that... :) Those 3 examples are exactly the same? : Nope... notice that there's a small

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Sagar Arya
Oops.. tat was a mistake.. "double quotes" i must notice that... :) Those 3 examples are exactly the same? : Nope... notice that there's a small space after the ending double quote.. ( got it ? ) :) tat's where IE sucks ! Cheers ! Aryan On Thu, Jan 15, 2009 at 5:05 PM, Liam Potter wrote: > > Th

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Liam Potter
Those 3 examples are exactly the same? Also, they are double quotes, not doube codes. Sagar Arya wrote: Hello, This completely works fine.. How ever it was a v v v v vv simple mistake when i include the .js files... there shouldn't be any spaces between the double(") codes.. E

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Sagar Arya
Hello, This completely works fine.. How ever it was a v v v v vv simple mistake when i include the .js files... there shouldn't be any spaces between the double(") codes.. Eg: = Illegal In IE. ( Really Sucks ! ) = Legal in FF ( Smooth !) = Legal In both IE and FF

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Sagar Arya
Hello,I am very sorry.. I am not supposed to publish the code.. Cheers ! Sagar On Thu, Jan 15, 2009 at 3:28 PM, jQuery Lover wrote: > > Is it possible to have your page published somewhere? > > > Read jQuery HowTo Resource - http://jquery-howto.blogspot.com > > > > On Thu, Jan 15

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread jQuery Lover
Is it possible to have your page published somewhere? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Jan 15, 2009 at 2:44 PM, Sagar Arya wrote: > Hello, > Yes I included the jQuery file before the colorpicker.js file. And > it works fine in Mozilla and c

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread Sagar Arya
Hello, Yes I included the jQuery file before the colorpicker.js file. And it works fine in Mozilla and chrome.. but it doesn't turn up in IE. Cheers ! Sagar On Thu, Jan 15, 2009 at 3:03 PM, jQuery Lover wrote: > > Well, it says jQuery is undefined. Have you put your jquery.js file > bef

[jQuery] Re: IE Problem with (function($)

2009-01-15 Thread jQuery Lover
Well, it says jQuery is undefined. Have you put your jquery.js file before colorpicker.js ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Jan 15, 2009 at 2:27 PM, Sagar Arya wrote: > Hello, >It doesn't seem to work even after adding the braces. It wo

[jQuery] Re: IE Problem with (function($)

2009-01-14 Thread James Van Dyke
The initial (function($) { was never closed. Here's how I formatted it so everything lines up: (function($){ var EYE = window.EYE = (function() { var _registered = { init: [] }; return { init:

[jQuery] Re: IE Problem with (function($)

2009-01-13 Thread Sagar Arya
hey thanks so much.. :-) Cheers ! Aryan On Wed, Jan 14, 2009 at 10:26 AM, Karl Swedberg wrote: > good eye, Ricardo! thanks for the back up. :-) > > --Karl > > > Karl Swedberg > www.englishrules.com > www.learningjquery.com > > > > > On Jan 13, 2009, at 5:54 PM, Ricardo Tomasi wrot

[jQuery] Re: IE Problem with (function($)

2009-01-13 Thread Karl Swedberg
good eye, Ricardo! thanks for the back up. :-) --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 13, 2009, at 5:54 PM, Ricardo Tomasi wrote: You're missing a parenthesis when closing the anonymous function: }(); should be })(); And I'm guessing '$' is

[jQuery] Re: IE Problem with (function($)

2009-01-13 Thread Ricardo Tomasi
You're missing a parenthesis when closing the anonymous function: }(); should be })(); And I'm guessing '$' is there for jQuery, so that should actually be })(jQuery); - ricardo On Jan 13, 3:56 pm, "Sagar Arya" wrote: > may be i should check with the other files and let you know... thanks fo

[jQuery] Re: IE Problem with (function($)

2009-01-13 Thread Sagar Arya
may be i should check with the other files and let you know... thanks for the information.. Cheers ! Aryan On Tue, Jan 13, 2009 at 7:06 PM, Karl Swedberg wrote: > I'm not seeing anything obvious. Taking a stab in the dark here ... I've > received a similar error in the past when a reference to on

[jQuery] Re: IE Problem with (function($)

2009-01-13 Thread Karl Swedberg
I'm not seeing anything obvious. Taking a stab in the dark here ... I've received a similar error in the past when a reference to one of my JavaScript files was resulting in a 404. The browser would try to parse the file as JavaScript, but of course it would be met with a syntax error on lin

[jQuery] Re: IE Problem

2009-01-07 Thread jhm
> Are you sure you understand what Fiddler does? Yea, I saw what it does and I really appreciate the tip. It's really useful and I could see the actual GET was working returning the data. The problem was with the json data in the file I was opening (a fundamental mistake on my part). Just in cas

[jQuery] Re: IE Problem

2009-01-07 Thread MorningZ
"Unfortunately, it doesn't help my problem" Are you sure you understand what Fiddler does? With the program running to the side of IE, you can see: 1) that the getJSON request is actually made (which btw, it'll be good to get in the habit of proper capitalization in JavaScript) 2) if it was, th

[jQuery] Re: IE Problem

2009-01-07 Thread Thomas
It would be interesting to see './files/v-winter.txt' as well, specifically how it's being served. Total shot in the dark, but I remember having had a similar problem (IE-only) when I started playing with XML files many moons ago. Maybe it would help if you served that file with an 'content-type

[jQuery] Re: IE Problem

2009-01-06 Thread jhm
> I'd suggest downloading and installing "Fiddler" (http://www.fiddlertool.com) That's a great tool, thanks! Unfortunately, it doesn't help my problem. I figure I must be doing something fundamentally wrong, since jquery is widely thought of as browser agnostic. So, I put together a small sample

[jQuery] Re: IE Problem

2009-01-06 Thread jhm
Fiddler is a great tool, thanks for that tip! Unfortunately, it doesn't help my problem. I figure I must be doing something fundamentally wrong, since jquery is widely thought of as browser agnostic. So, I put together a small sample file that has everything in it (and still exhibits the problem

[jQuery] Re: IE Problem

2009-01-05 Thread MorningZ
I'd suggest downloading and installing "Fiddler" (http:// www.fiddlertool.com) and seeing what the client side request looks like On Jan 5, 7:22 pm, jhm wrote: > The following code works in Firefox and Opera, but does nothing in IE. > The problem is the loading of the json file. Am I missing s

[jQuery] Re: IE problem

2008-12-05 Thread Michael Geary
I see one problem right away: You're getting a "guid is null or not an object" error in your initialization code. Walking up the call stack, it turns out that this comes from the .hover() call at the end of your JavaScript code. The .hover() method takes two function arguments, and it's not being

[jQuery] Re: IE problem

2008-12-05 Thread luke adamis
OK I figured it out. There is nothing wrong with my script. This website is developed in ShopSite. http://shopsite.com/ ShopSite uses templates to build static pages. In order to cross link and to be able to search ShopSite places anchors all over the HTML. For some reason for these anchors i

[jQuery] Re: IE problem

2008-12-05 Thread luke adamis
test page: http://kitchenshop.ebeacon.net/catalog/ thanks, luke On Dec 4, 2008, at 6:29 PM, Michael Geary wrote: It doesn't seem to work for me in Firefox either. For some reason, $('.promotion_content').length evaluates to 0. Oh! I get it. I'm missing the HTML code! Sorry, just kidding ar

[jQuery] Re: IE problem

2008-12-04 Thread Michael Geary
It doesn't seem to work for me in Firefox either. For some reason, $('.promotion_content').length evaluates to 0. Oh! I get it. I'm missing the HTML code! Sorry, just kidding around with you. :-) But seriously, it's pretty hard to guess what might be wrong without a test page to look at. The

[jQuery] Re: IE Problem with jquery in dynamically loaded iframe.

2008-08-31 Thread Brad
I can't tell from your example, but in my experience "works in other browsers but not IE6" can usually be traced to invalid HTML markup. Also if your actual code has any more object literals than shown make sure they don't contain a trailing comma, e.g., { name: 'foo', status: 'bar', } On Aug 31

[jQuery] Re: IE problem

2007-09-20 Thread Karl Swedberg
Hi Jonathon, I noticed two problems when I copied your code below and pasted it into a new page: 1. I changed it to this: