[jQuery] Re: Method addClass is not working with MS Internet Explorer (IE) 6

2007-10-26 Thread Mindjoy
Karl, you're right, your suggestions work fine in IE. However, I will settle on attr method since it's shorter and does exactly what I want to do. Thank you for your help. Regards, Ivica Mikic On Oct 25, 6:19 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > I'm guessing this is a weird css speci

[jQuery] OT: a very simple download indicator (marquee strikes back)

2007-10-26 Thread Klaus Hartl
... ;-) http://www.stilbuero.de/2007/10/26/a-very-simple-download-indicator-the-glorious-return-of-the-marquee-tag/ --Klaus

[jQuery] Re: Displaying same input box

2007-10-26 Thread Adrian Lynch
How about creating the form once and moving it to where ever it's needed. Something like this: var replyForm = $('
'); $(document).ready(function() { replyForm.append($('')); replyForm

[jQuery] Re: load a file from local file system

2007-10-26 Thread Gordon
AJAX requests are cached by default, but they can only occur from a web server and must occur in the domain the page is hosted in. For example if you have a HTML page at www.example.com that includes some AJAX javascript, the AJAX requests can only occur on files on www.example.com On Oct 26, 1:

[jQuery] Re: Saving contents

2007-10-26 Thread Adrian Lynch
Of course. var divContent; function saveDivContent() { divContent = $("#test").html(); } function doSomethingWithTheSavedContent() { alert(divContent); } But, be careful if the div content contains a form with dynamically created elements. I've had trouble with saving those in

[jQuery] Re: load a file from local file system

2007-10-26 Thread [EMAIL PROTECTED]
hi, ok, so javascript does not have a way to access local file. a related question, can ajax loaded file be cahced? On Oct 26, 6:37 pm, Gordon <[EMAIL PROTECTED]> wrote: > No, this is deliberately left out of javascript on the grounds that it > could prove a massive security risk if abused. > >

[jQuery] Re: Checkboxes and radios

2007-10-26 Thread Feijó
Here it is If any checkbox is clicked, it needs do enable the radio next to it. In the bottom I have 3 links to check it all, uncheck it all, or toggle. In those cases the radios need to respond as well. That's my last jquery attempt: $('.form- item:checkbox:not(:checked)').siblings(':rad

[jQuery] Re: Hovering over jQuery retrieved HTML

2007-10-26 Thread Charles Sexton
Hi Jolyon, I believe that's exactly what I'm doing, as it works perfectly fine for the first dropdown. It's when jQuery is told to look at HTML gained via Ajax that I begin to see a problem, but only with mouse gestures. The key functions work perfectly fine. Here's the code for the first dropdo

[jQuery] Changing form action with hidden field named action in IE causes error

2007-10-26 Thread Adrian Lynch
The long subject says it all! If I have a hidden field named 'action', trying to change the form action attribute fails in IE7. If I change the hidden field to something other than action it works. Can anyone think of a way around this? I would like to keep the hidden field named 'action' if I

[jQuery] Displaying same input box

2007-10-26 Thread Merlin
Hello everybody, I am new to jquery and do currently try to add a reply field to each of many user comments under a picture. Therefore I have create a function in jquery that displays a html form with a save and cancel button. My goal is now to show this form whenever someone clicks on one of th

[jQuery] Multiple animate problem

2007-10-26 Thread Globule
Hi all, I realised something like http://demos.mootools.net/Fx.Elements with JQuery with background image transition. But images are not resized simultaneously, so the last button sometime get down. You can see it in action on http://denon.joomlation.org More precisions --- I

[jQuery] Re: New Plugin: SimpleModal

2007-10-26 Thread Eric Martin
On Oct 25, 6:48 pm, Pops <[EMAIL PROTECTED]> wrote: > Ok, I checked into it and I have the FireFox NOSCRIPT plugin. Just too > dangerous out there to willy nilly allow all sites use Javascript. So > I turn it on on a site by site basis. NOSCRIPT puts alittle clickable > icon in the status bar tel

[jQuery] Re: New Plugin: SimpleModal

2007-10-26 Thread Eric Martin
On Oct 25, 3:54 pm, bbuchs <[EMAIL PROTECTED]> wrote: > I think he's referring to the queuing and duration of the fade > effects. First the overlay fades in, the the modal fades in... start > to finish it's more than a full second from the moment the trigger was > clicked. > > Your fade durations

[jQuery] Re: Google Analytics Tracking With jQuery

2007-10-26 Thread jason
Yep, that's my understanding as well, although: 1) I don't know how long it will be in beta -- what's there now is not recommended for production use and is subject to change. 2) I don't know how configurable it will be "out of the box" -- a lot of the things people do with urchin.js now are "fe

[jQuery] Re: Code in loop

2007-10-26 Thread Jean
Ae brazuca naum sei do resto mas sei que vc esta errando aqui var id = $(this).attr("id_delete") The attr method catch or set a the value of the jq object. Try this var id = $(this).attr("id") On 10/25/07, Jimmy Neph <[EMAIL PROTECTED]> wrote: > This is the code: > $(".delete").click(f

[jQuery] Re: load a file from local file system

2007-10-26 Thread Gordon
No, this is deliberately left out of javascript on the grounds that it could prove a massive security risk if abused. On Oct 26, 10:49 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > the $(element).load(url) works well, but is there a way load from a > local file system? thanks. > >

[jQuery] Saving contents

2007-10-26 Thread [EMAIL PROTECTED]
Hi, I have a need to save content of a to some global variables and re-load it sometime later, possible with jQuery? thanks. A.C.

[jQuery] load a file from local file system

2007-10-26 Thread [EMAIL PROTECTED]
Hi, the $(element).load(url) works well, but is there a way load from a local file system? thanks. A.C.

[jQuery] Re: Google Analytics Tracking With jQuery

2007-10-26 Thread Mika Tuupola
On Oct 26, 2007, at 3:54 AM, jason wrote: - Examine all of the links on the page and attach onclick events to: - External links. - Mailto links. - Downloads. - Call urchinTracker() when these links are clicked, prefixing them appropriately. AFAIK new ga.js tracks outbound links

[jQuery] Re: fade png24 images in IE7

2007-10-26 Thread Gordon
I don't think there is much you can do about this I'm afraid, even with the improvements made for IE7 the browser's PNG transparency code is still buggy. On Oct 25, 4:35 pm, Melzmann <[EMAIL PROTECTED]> wrote: > Hi there, > at first I must to excuse for my bad english... I come from Germany. > I

<    1   2