[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-16 Thread Joel Birch
Hi Carleigh, Sorry for the delay in replying - I've been really busy. This should solve it I think. In the css rule with the selector: #nav li:hover, #nav li.sfHover, #nav a:focus, #nav a:hover, #nav a:active { ... } you need to have this selector also: #nav li:hover a, #nav li:sfHover a I noti

[jQuery] Re: Superfish not working on PHP page

2007-11-16 Thread Joel Birch
I had a look at your page and it seems that you just need to adjust your widths and padding of all the elements involved. I altered the css from within Firebug to what I think is a more robust set of values. The resulting css should be more stable across all browsers. I've posted the resulting fil

[jQuery] Re: Superfish v1.3.1 - ie third level menu clipping display problem

2007-11-16 Thread Joel Birch
Hi Jared, I have not been able to reproduce this problem at all so it's hard to give any decent advice. The thread you linked to shows that Noobert's problem was resolved and his issue turned out to be other CSS on the page interfering with the menu. Quote from that thread: "Aha! I found the pro

[jQuery] Re: superfish bug?

2007-11-16 Thread Joel Birch
Hi Arjan, Thanks for the bug report - I found that it happens in both IE6 and IE7. This was such a bizarre thing - I still have no idea why or even how it possibly could occur, but I seem to have found an ugly but effective fix for it which I have added to the latest version of Superfish (now upd

[jQuery] Re: superfish - using different animations?

2007-11-16 Thread Joel Birch
On 17/11/2007, slooodge <[EMAIL PROTECTED]> wrote: > Unfotunately the declaration of the first > animation type gets overwritten by the second one. > Does anyone know how to implement two different menues on one page? Hi Slooodge! Thanks very much for pointing this out. The first version of Sup

[jQuery] Re: Target secon

2007-11-16 Thread Karl Swedberg
On Nov 16, 2007, at 5:59 PM, skube wrote: Nope, that results in all of the 's being hidden in the first : First Actually, Wizzud's suggestion worked for me when I tested it locally: $('div.myDiv p:not(:first-child)').hide() Hides all p elements that are descendants of and are not

[jQuery] Re: Thickbox opens off screen in IE7 - must fix, site already launched!

2007-11-16 Thread MichaelEvangelista
Good to know, thanks for checking! (sure wish I could pin down the difference on some systems, or adjust some css somewhere with an IE hack... just not sure where to begin, and more than a bit hesitant for fear of breaking the thickbox altogether) -- -- Michael Evangelista, Evangelista Desi

[jQuery] HELP with default tooltip

2007-11-16 Thread [EMAIL PROTECTED]
Hi, I need to prevent the browsers ( All ) to show the title link and the alt message of img as tootltip. The prevention must be made only on a particular link that wrap an image. Any suggestion? Thanks Andrea

[jQuery] Re: Browser Exit Event

2007-11-16 Thread Wizzud
I hesitate to suggest that a simpler approach may be to store the positions as they change, rather than wait until the browser suddenly disappears, shuts down, moves to another page, or whatever? On Nov 15, 11:50 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On Nov 15, 9:35 pm, Bil Corry <[EMAIL P

[jQuery] Re: Clear a siblings $.toggle() function

2007-11-16 Thread Wizzud
unbind('click') On Nov 16, 2:28 am, "Chris J. Lee" <[EMAIL PROTECTED]> wrote: > I've tried to search for this in the discussion. but didn't know what > to search. > > Is there a way to clear a toggle? Say on a callback of an effect I > clear the toggle event for a sibling of this element? > > My

[jQuery] Re: jQuery Ajax throws parseerror in IE

2007-11-16 Thread 1Marc
Here is an update. I tried using Google's API for Ajax and it is returning the data but I am unable to parse it with jQuery. CODE >> GDownloadUrl(object.path + '?' + object.data, function(data, responseCode) { if (responseCode == '200') { $('node', data); } }); OUTPUT >> fi

[jQuery] Re: Close/hide div on click outside

2007-11-16 Thread Wizzud
$('#master).click(function(e) { (e.target && e.target.id == 'target') || $ ('#target).fadeOut('slow'); return false; }); blockui plugin? jqmodal plugin? On Nov 16, 4:58 pm, Codex <[EMAIL PROTECTED]> wrote: > Ok, I see how this is working, but... if you click on the target div > it trig

[jQuery] Re: Target secon

2007-11-16 Thread skube
Nope, that results in all of the 's being hidden in the first : First

[jQuery] Re: Target secon

2007-11-16 Thread Wizzud
Try... $('div.myDiv p:not(:first-child)').hide(); On Nov 16, 9:17 pm, skube <[EMAIL PROTECTED]> wrote: > I figured out the following works: > > $('div.myDiv').each(function(){ > $(this).children('p').not(':first').hide(); > > }) > > However it still seems like there must be a better way. Anyone

[jQuery] Re: Thickbox opens off screen in IE7 - must fix, site already launched!

2007-11-16 Thread Wizzud
IE7 v7.0.5730.11 on XP - no problem. On Nov 16, 9:54 pm, "MichaelEvangelista" <[EMAIL PROTECTED]> wrote: > > Where it was breaking, does the size of the browser window affect it? > > Yes definitely. > Smaller browser windows get it off-screen. > With a larger monitor at full screen the window is

[jQuery] Re: limit to only jpeg when file upload

2007-11-16 Thread dfgonzalez
This works fine, except for the toLowerCase() function thar throws an error, if you remove that it's just fine. On Oct 31, 7:11 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > Untested: > > > > > > $('form').bind('submit', function() { > var ext = $('#file').val().split('.').slice(-1).toLower

[jQuery] Re: Thickbox opens off screen in IE7 - must fix, site already launched!

2007-11-16 Thread MichaelEvangelista
Where it was breaking, does the size of the browser window affect it? Yes definitely. Smaller browser windows get it off-screen. With a larger monitor at full screen the window is not exactly centered, but not so far south as to be out of visibility at the bottom. -- -- Michael Evangelista

[jQuery] jQuery Ajax throws parseerror in IE

2007-11-16 Thread 1Marc
When using jQuery Ajax, I am receiving a parseerror in IE (Firefox & Safari work). Has anyone run into this before - and know how to fix it? Or something I can at least try. CODE >> object = { path : 'data.xml', data : 'lat=40.935&lng=-125.000' } $.ajax({ url: object.path, data: o

[jQuery] Re: .css("border-color") problem in FireFox

2007-11-16 Thread Dave Methvin
> I want to get the border-color of a div. The border-color property is most useful for setting all the border sides at once. When getting the colors it's more complicated. Which side of the div do you want to examine: top, right, bottom, or left? Each can be a different color. If they were diffe

[jQuery] How to control order of events or wait until something is loaded?

2007-11-16 Thread dougXN
So this isn't specific to validate, but it seems to be the one that for what ever reason causes me pain. I usually try not to load the same javascript over and over so I do something like this: if (typeof(writeLog) == 'undefined') { $.getScript("/javascript/mystuff/logger.js"

[jQuery] Re: Target secon

2007-11-16 Thread skube
I figured out the following works: $('div.myDiv').each(function(){ $(this).children('p').not(':first').hide(); }) However it still seems like there must be a better way. Anyone?

[jQuery] Target secon

2007-11-16 Thread skube
I have a simple problem, but for some reason I can't figure out the jQuery way to do it. Basically, all I want is to target every child (except the first one) of a group of elements. Say, for example, one has multiple divs: First Second Third First Second Third And say, I want to

[jQuery] Re: Displaying same input box

2007-11-16 Thread Merlin
Hello Adrian, I tried your code but on click of the button there is absolutly nothing happening?! I also tried to locate the potential error, but my JQuery knowledge is limited so far. Regards, Merlin On Oct 26, 1:30 pm, Adrian Lynch <[EMAIL PROTECTED]> wrote: > How about creating the form onc

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Karl Swedberg [mailto:[EMAIL PROTECTED] > Isn't that what this does? > $(this).next('div:hidden').slideDown('fast').siblings('div:vis > ible:not(:has(input:checked))').slideUp('fast'); This is getting closer: $(this).next('div:hidden').slideDown('fast').si

[jQuery] Re: jCarousel - IE6 issue, carousel overlapping a nested nav

2007-11-16 Thread Josh V
anybody? On Nov 14, 10:57 am, Josh V <[EMAIL PROTECTED]> wrote: > Hi, > > Please check out the following url where im using jcarousel to act as > an image slideshow. to the left of the clip container i have a nested > navigation list that is showing underneath the clip container in IE6. > the nes

[jQuery] Re: thickbox IE7 position

2007-11-16 Thread MichaelEvangelista
{bump} any further thoughts on this? Still fumbling for a cure... On Nov 6, 4:59 pm, "MichaelEvangelista" <[EMAIL PROTECTED]> wrote: > I am using a thickbox modal window to show an ajax routine on an ecommerce > site. > Everything's working great, except in IE7 where the thickbox is aligning t

[jQuery] Re: I need use bgIframe plugin with ClockPick puglin

2007-11-16 Thread Josh Nathanson
Hi Andres, I don't see where you are calling ClockPick? Also, you will probably need to apply bgIframe to ALL the classes of ClockPick, or else they will appear under the select menu. They all start with "CP", so probably the easiest way to do that would be like so: $("div[class^=CP], div[

[jQuery] Re: .css("border-color") problem in FireFox

2007-11-16 Thread Kevin Scholl
"borderColor" is a reserved word, so it shouldn't be used as a variable name. Try using something else, maybe "bColor" or something like that. Also, you might want to replace css("border-color") with css("borderColor") for consistency. $("#mydiv").each(function() { var bColor = $(this).css("bor

[jQuery] news rotator - looking for some help in cleaning up my code

2007-11-16 Thread sperks
I've got my code working (adapted of Karl Swedberg's Scroll Up News Reader) http://docs.jquery.com/Tutorials:Scroll_Up_Headline_Reader, but I'm sure there's a cleaner (more dynamic) way of checking where I am in the loop so that I don't have to do all the individual click checks $("#topSto

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Priest, James (NIH/NIEHS) [C] > Last question - would it be possible to have it collapse the > checkboxes > both when you click on the parent H3 or any other H3 (as it does now)? > That may not be possible but what do I know :) I'm going to show this > as i

[jQuery] Re: Close/hide div on click outside

2007-11-16 Thread Codex
Ok, I see how this is working, but... if you click on the target div it triggers the close also. Is there a way to 'tell' the target that when it's open, all underlying divs are disabled? On 16 nov, 10:29, Feijó <[EMAIL PROTECTED]> wrote: > Can you provide an code of your attempt? > > It may be s

[jQuery] Selector Not Working in IE7?

2007-11-16 Thread Rob Wilkerson
I'm trying to "manually" interact with the multifile plugin and, as part of that endeavor, I need to systemically access the anchor tag that provides "Delete" functionality. The following works great in FF (of course): $('a[href^="#multimulti_"]') The objects are returned as expected and alert

[jQuery] Re: Thickbox opens off screen in IE7 - must fix, site already launched!

2007-11-16 Thread Jeffrey Kretz
Just tested it in IE7 and the thickbox popup on your page was centered for me. Where it was breaking, does the size of the browser window affect it? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MichaelEvangelista Sent: Friday, November 16

[jQuery] Re: Select box (selectedIndex) problems in Internet Explorer (ie) on refresh and back buttons

2007-11-16 Thread [EMAIL PROTECTED]
I use the plugin above to "remove" the options I don't want to see. But when I remove them, I "cache" them in a variable attached to the select object. I then provide a new function called restoreOptions() which uses the data in the cache variable to add the options back into the select box. So

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Karl Swedberg [mailto:[EMAIL PROTECTED] > It's showing the very next div, and then hiding any other > sibling div that does not have a checked input. I must be > misunderstanding something. In the html snippet you provided, > you had one checkbox per div.

[jQuery] Thickbox opens off screen in IE7 - must fix, site already launched!

2007-11-16 Thread MichaelEvangelista
Here is the site www.inkedpress.com Type your name in the text box and click submit. Then click any of the thumbnails to pick a letter you should see a thickbox popup with a set of thumbnails and some buttons. The broken version looks like this http://mredesign.com/downloads/mephotos/iP-thickbo

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Karl Swedberg [mailto:[EMAIL PROTECTED] > Sent: Friday, November 16, 2007 12:31 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: hiding checkbox AND label? > I think I'm beginning to understand what you're trying to do > here. I'm a little slow. ;

[jQuery] QuickSearch plugin - triggering events

2007-11-16 Thread Sean O
Hi, I'm trying to modify "RikRIkRik" Lomas' excellent QuickSearch plugin. I want to set up clickable links to remove all sorting, and to setup predefined sorts (defined strings sent to the text input). I can clear and fill in the text input box easily enough, of course. But that does nothing

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread trevorp
Jim, You started a new topic and abandoned your last one, not sure if that was on purpose or not, but the code I pasted at the end of the other topic seems to do exactly what you're asking for. Like I said, it's not necessarily elegant, but it does work. I should have probably copied your Topi

[jQuery] Re: hiding checkbox AND label?

2007-11-16 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: trevorp [mailto:[EMAIL PROTECTED] > You started a new topic and abandoned your last one, not sure if > that was on purpose or not, but the code I pasted at the end of the Unintentional - it was an Outlook glitch on my part! > For your reference, the oth

[jQuery] Performing actions at specific times of day, or at random?

2007-11-16 Thread zarino
Hi there! I'd like to load a different css stylesheet depending on the time of day. If it's 6am-12noon, it'll be one sheet. If it's 12noon-6pm it'll be another. And 6pm-6am, it'll be a third. I'm sure there must be an easy way of getting jQuery to take the browser's time and date, check which ti

[jQuery] Select change event on item 1 not firing

2007-11-16 Thread ISSSSI
Hello, I have the following http://richmondshire.riverprojex.com/ page the select boxes are wired upto change event. When user picks item the page redirects. The issue is for some reason the first item does not trigger the change event. My code looks like this $('#residentsSelect').change(

[jQuery] parser error on well-formed xml

2007-11-16 Thread tarini
i use this xml saved locally in projects.xml Nome del progetto 1 Note del progetto 1 Nome del progetto 2 Note del progetto 2 it's well-formed but IE v7 show me a parser error... onError : fun

[jQuery] .css("border-color") problem in FireFox

2007-11-16 Thread wellmoon
Hi, I want to get the border-color of a div. The following code works in IE and alerts the color of the border: $("#mydiv").each(function() { var borderColor = $(this).css("border-color"); alert(borderColor); }); In FireFox it just alerts 'undefined' The border is set with CSS, not by jav

[jQuery] Re: AJAX Response script is not executed

2007-11-16 Thread cjiang
Hi, There might be one possibility that 1) you are using the latest JQuery release, and 2) the return javascript is not in the root level tag (ie, you have someting like
(or whatever) ...