Well, maybe the guys at jQuery optimized the text method only for
elements that can appear more than once... I don't know.
However, text() should not be used for TITLE anyway, so this "bug" is
not a problem.
Šime,
$('title').html() works fine in both IE8 and FF, fixing my problem.
But I don't understand why the difference in behaviour on :
surely if there's only one title element than the innerHTML of the first
matched element should be the same as the concatenated innerHTML of all
matched elemen
The, html() method works in all browsers...
text() = returns the concatenated innerHTML properties of all matched
elements
html() = returns the innerHTML property of the first matched element
Generally you don't use text() to retreive the contents of an
element...
BUT, if you want to write to th
I think document.title works on all browsers.
OK, I have solved it.
It appears that I needed to set display:inline-block; on span elements in
scrolling div.
Not sure why but it works now.
On Fri, Nov 20, 2009 at 8:29 AM, Manic wrote:
> Hello,
>
> I'm using jquery script to animate stock ticker. Everyting works OK,
> except in IE8. can anyon
I didn't know about this kludge, could be seriously useful ... thank
you. IE will kill my health soon, I know - how development would be
cheaper if I could avoid wrestling with ie6,7 and 8 bug generators ...
Apparently, the problem is due to a nasty combination of div nesting
and css, by changing
I have one solution for this kind of problems: Forcing IE8 to behave
like IE7 by adding a meta line into the section.
Like this:
I guess IE8 have many issues related to javascript, so it would be the
best solution for this.
On 28 Ekim, 12:38, risteli wrote:
> I have a problem with a simple
ignore that
Liam Potter wrote:
If you are using 1.2.6 you need to use the @ symbol
$('#Row_1 inp...@type=text]').each(function() {
$(this).val('');
});
gentry wrote:
Anybody know why this doesn't work in IE8 with jQuery version 1.2.6?
It works in the latest jQuery version but I
If you are using 1.2.6 you need to use the @ symbol
$('#Row_1 inp...@type=text]').each(function() {
$(this).val('');
});
gentry wrote:
Anybody know why this doesn't work in IE8 with jQuery version 1.2.6?
It works in the latest jQuery version but I can't move to it yet
because of some
I must have something screwy with my page (it has a lot going on), as
I'm unable to reproduce this on a test page. I'll dig some more and
see if I can figure what's causing the issue before filing a bug
report.
On Aug 12, 2:28 pm, John Resig wrote:
> gentry -
>
> Yes please!
>
> --John
>
> On We
gentry -
Yes please!
--John
On Wed, Aug 12, 2009 at 5:15 PM, gentry wrote:
>
> I got it to work by changing to this:
>
> $('#Row_1>td>input[type=text]').each(function() {
>$(this).val('');
> });
>
> John - Still want a bug filed for this?
>
> Thanks,
> Shane
>
> On Aug 12, 11:50 am,
I got it to work by changing to this:
$('#Row_1>td>input[type=text]').each(function() {
$(this).val('');
});
John - Still want a bug filed for this?
Thanks,
Shane
On Aug 12, 11:50 am, John Resig wrote:
> It looks similar to the one above, but different. I'll try and check in to
> the
It looks similar to the one above, but different. I'll try and check in to
them both.
gentry - can you file a bug for the issue you found, preferably with a full
test case?
--John
On Wed, Aug 12, 2009 at 2:21 PM, Jeffrey Kretz wrote:
>
> My guess is its related to a problem I ran into with the
Not confirming or disconfirming that it is a bug, but using the attr()
method worked for me
$('#Row_1 input[type=text]').each(function() {
$(this).attr('value','');
});
On Aug 12, 1:25 pm, gentry wrote:
> Anybody know why this doesn't work in IE8 with jQuery version 1.2.6?
> It works i
My guess is its related to a problem I ran into with the Sizzle child
selectors in 1.3.x
I opened a ticket about a month ago
http://dev.jquery.com/ticket/4917
But it hasn't been reviewed yet.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] O
You are correct, it errors when attempting to validate the empty
select. I'll just change the default option to not be blank. Thanks!
On May 27, 5:30 pm, Jonathan wrote:
> Hmm.. threw away the [validate] in the subject. Trying again.
>
> On May 27, 4:28 pm, Jonathan wrote:
>
> > I took a look
I have the same problem with the following error: Object required on
line 875 of jquery.validate.js.
URL: http://www.ixcape.com/staging/account/create.php
On May 26, 5:34 pm, Jonathan wrote:
> It works in IE8. What errors are you getting?
>
> Need more details.
>
> On May 26, 1:44 pm, rickmata
It works in IE8. What errors are you getting?
Need more details.
On May 26, 1:44 pm, rickmataka wrote:
> I was wondering if there was an update for validate plugin because it
> does not work in IE8
> and even though i do server side thats sucks
>
> Thanks
> Rick
Alright, Incase anyone stumbles into this looking for an answer you
can try the following:
I updated to the latest version of UI and found that the dialog loaded
without my html form. So, I simply removed the height option and
everything loaded just fine in IE. FF appeared to not be affected by
t
I ran the IE8 Dev Debugger and came across this: The error is "jscript
runtime error invalid argument"; and the code is "elem[ name ] =
value;" within my jquery-1.3.2.js file
Any help is appreciated.
Thanks,
Shadraq
Upon further testing, I also have a div that is called. The error
appears to be happening within this:
At least one field must be filled in
First Name
Last Name
Hi Bart,
Try the following.
In your page just have an empty body tag and a script tag in the head. In
the script tag, invoke blockUI and then use ajax to load the entire content
into the body (or any container of your choice, really). See the following
example:
index.html (simplified)
==
Hi Anand,
the thing is, I have to block the screen while loading the page to
prevent any user interaction untill the page ist completely loaded.
This is working in all browsers but not in IE8.
My solution right now is to set IE8 to IE7 render mode with the meta
tag:
Greets,
Bart
Hi Ronen42,
Its recommended that you invoke the plugin in the $(document).ready
(function(){ }) section.
Although the plugin might detect the browser version at the very
beginning, any internal procedures (such as creating the overlay etc.)
may not work until the entire DOM is ready to be manipu
Hi All,
> on line 151 simply change:
>
> var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent);
>
> to
>
> var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !(/
> MSIE 8.0/.test(navigator.userAgent));
>
> And then everything works fine and dandy! My test environment w
Hi All,
I have it! The solution to the problem where the blockUI plugin
doesn't working in IE8 is as follows:
on line 151 simply change:
var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent);
to
var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !(/
MSIE 8.0/.test(
Here is the HTML:
http://www.w3.org/1999/xhtml";>
Untitled Document
This Fades on loadup
And here is the JavaScript:
$(document).ready(function(){
$("#InputField").focus();
$("#FadeThisGuy").fadeOut("slow");
});
It's an incredibly simple test which works fine it Firefox, yet
How exactly are you trying to fade it? A sample of your code would be good
to diagnose said error, otherwise we have to assume that you are relying on
JQuery to fade and if you are then assume that it's the way you have your
span setup with CSS.
-Original Message-
From: jquery-en@googlegr
> Mike,
>
> your page fails for me with "not implemented"> Nicht implementiert
> jquery.blockUI.js?v2.16, line 227 character 17
>
> on Win XP Pro w/ SP3 and IE8
>
> Regards, Frank
Thanks, Frank. What browser mode and compatibility mode did it fail
in?
Mike,
your page fails for me with "not implemented"
> Nicht implementiert jquery.blockUI.js?v2.16, line 227 character 17
on Win XP Pro w/ SP3 and IE8
Regards, Frank
On 20 Mrz., 22:10, Mike Alsup wrote:
> > > This eliminates the exception, but the placement of the floating content
> > > is
> >
> Click Page -> Compatibility View Settings
> Uncheck the option "include updated websites from Microsoft"
> Try this page, where I first noticed
> it:http://corp.americanexpress.com/gcs/travel/service/personalservice.aspx
> Click on the globe to trigger the popup. It bombs. Now go into IE7
> com
2:11 PM
To: jQuery (English)
Subject: [jQuery] Re: IE8 & BlockUI incompatible
> > This eliminates the exception, but the placement of the floating content
is
> > different, and it doesn't appear to adjust on window resize. Thanks for
the
> > update, and let me know if
On 20 Mar, 21:04, Mike Alsup wrote:
> > There was a thread about this last month that identified a problem with the
> > use of setExpression in BlockUI. IE8 throws a not implemented exception in
> > this case. The author noted that the BlockUI demo page works fine in IE8,
> > which it does. To b
> > This eliminates the exception, but the placement of the floating content is
> > different, and it doesn't appear to adjust on window resize. Thanks for the
> > update, and let me know if you need assistance in testing/debugging the new
> > version.
>
> How about a test page. One that is as si
> This eliminates the exception, but the placement of the floating content is
> different, and it doesn't appear to adjust on window resize. Thanks for the
> update, and let me know if you need assistance in testing/debugging the new
> version.
How about a test page. One that is as simple as pos
query-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Mike Alsup
Sent: Friday, March 20, 2009 1:04 PM
To: jQuery (English)
Subject: [jQuery] Re: IE8 & BlockUI incompatible
> There was a thread about this last month that identified a problem with
the
> use of setExpres
> There was a thread about this last month that identified a problem with the
> use of setExpression in BlockUI. IE8 throws a not implemented exception in
> this case. The author noted that the BlockUI demo page works fine in IE8,
> which it does. To be honest, I'm not sure why.
>
> However, the p
I noticed, yesterday, that on IE8, scrollTo doesn't work on overflowed
elements.
http://demos.flesler.com/jquery/scrollTo/
I even tried $('#elem').attr({ scrollLeft:500, scrollTop:500 }) but
that didn't work as well.
--
Ariel Flesler
http://flesler.blogspot.com
On Dec 18 2008, 1:50 pm, sferrag
I'd like to start testing in IE8b2 as well but I can't seem to get it
working. Has anyone else had difficulties with it? My PC is running
Windows XP sp3. I installed IE8, rebooted, but IE8 wouldn't start
up. I checked the version to confirm it was actually installed and it
was. I re-installed
I'd like to start testing in IE8b2 as well but I can't seem to get it
working. Has anyone else had difficulties with it? My PC is running
Windows XP sp3. I installed IE8, rebooted, but IE8 wouldn't start
up. I checked the version to confirm it was actually installed and it
was. I re-installed
I'd like to start testing in IE8b2 as well but I can't seem to get it
installed. Has anyone else had difficulties getting it up and
running? I'm running Windows XP sp3. I installed IE8, rebooted but
IE8 wouldn't start up. I checked the version to confirm it was
installed and it was. I re-inst
simonferra...@gmail.com wrote:
Our friends at Microsoft have a lot of work to do until their new born
browser IE8 (Still in Beta 2) actually works the way it should.
It seems that there is a major event triggering issue. Lots of jQuery
core functionalities depends of events.
Don't forget to do your part
http://ejohn.org/blog/a-web-developers-responsibility/
- Richard
On Thu, Dec 18, 2008 at 10:50 AM, sferragne wrote:
>
> Our friends at Microsoft have a lot of work to do until their new born
> browser IE8 (Still in Beta 2) actually works the way it should.
>
> It s
I can repro this on IE8b2 -- I need to remember to hit the IE7 mode
button when things simply don't work as expected!
turns out that error is symptomatic of a remote get... i thought was
doing a local one as well, but i was at http://ipaddress/ instead of
http://hostname/
--adam
On Mar 6, 11:17 am, timothytoe <[EMAIL PROTECTED]> wrote:
> I'm doing a $.get() in IE8 without trouble, but I've only tried
> locally
I'm doing a $.get() in IE8 without trouble, but I've only tried
locally (local Apache, PHP on Windows XP).
On Mar 6, 7:35 am, ajpiano <[EMAIL PROTECTED]> wrote:
> anyone else getting errors at line 2666 of jQuery during ajax requests
> in IE8?
>
> xml.open(s.type, s.url, s.async, s.username, s.pa
anyone else getting errors at line 2666 of jQuery during ajax requests
in IE8?
xml.open(s.type, s.url, s.async, s.username, s.password);
the debugger says, "Breaking on JScript runtime error - Permission
denied"
--adam
On Mar 6, 9:40 am, timothytoe <[EMAIL PROTECTED]> wrote:
> Hehe. I _really_
Scratch that. During the long calculation I show a chart to keep
people from being bored. It's negligible in FF, but turns out to be a
huge cost in IE (using excanvas). So I'm going to only show it in IE
1/4 as often. Still have to give people something to look at.
On Mar 6, 6:40 am, timothytoe <
Hehe. I _really_ hope the JScript gets faster in upcoming releases. It
seems as if their DOM stuff got faster but I haven't checked.
On Mar 6, 12:47 am, Michael Stuhr <[EMAIL PROTECTED]> wrote:
> timothytoe schrieb:> One thing I noticed is that the JavaScript is still
> painfully slow,
> > but p
timothytoe schrieb:
One thing I noticed is that the JavaScript is still painfully slow,
but perhaps there is a lot of debug stuff in there slowing it down.
What takes 7 seconds in Safari and 8 in Firefox 3b3 takes 25 seconds
in IE8! (28 seconds in IE6).
That's ~11% better in ~8 years
Not too b
One thing I noticed is that the JavaScript is still painfully slow,
but perhaps there is a lot of debug stuff in there slowing it down.
What takes 7 seconds in Safari and 8 in Firefox 3b3 takes 25 seconds
in IE8! (28 seconds in IE6).
On Mar 5, 2:54 pm, timothytoe <[EMAIL PROTECTED]> wrote:
> htt
http://www.microsoft.com/windows/products/winfamily/ie/ie8/readiness/Install.htm
On Mar 5, 2:52 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Tim, can you point me to the download link?
>
> On 3/5/08, timothytoe <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > It seemed to overwrite IE7, but it ha
Tim, can you point me to the download link?
On 3/5/08, timothytoe <[EMAIL PROTECTED]> wrote:
>
>
> It seemed to overwrite IE7, but it has an IE7 mode. I only did it on
> one computer.
>
>
> On Mar 5, 1:41 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> > Did IE8 overwrite IE7 or can it work standalone?
It seemed to overwrite IE7, but it has an IE7 mode. I only did it on
one computer.
On Mar 5, 1:41 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> Did IE8 overwrite IE7 or can it work standalone?
>
> Rey
>
> timothytoe wrote:
> > I was pretty excited to download IE8 today. All the jQuery stuff in my
>
Did IE8 overwrite IE7 or can it work standalone?
Rey
timothytoe wrote:
I was pretty excited to download IE8 today. All the jQuery stuff in my
app seems to work fine.
The debugger is pretty nice. I've always had trouble finding bugs in
IE.
Anyone find any IE8 jQuery problems yet?
55 matches
Mail list logo