[jQuery] Re: Can find() return elements in DOM order?

2008-12-01 Thread brian
looks good! $('#myform').find('input,select,textarea').sort(); On Mon, Dec 1, 2008 at 9:09 PM, ricardobeat <[EMAIL PROTECTED]> wrote: > > Here's a kind of 'DOM order sort plugin' I just made adapting code > from the 'getElementsByTagNames' function by Peter-Paul Koch (http:// > www.quirksmode.o

[jQuery] Re: Linked tabs that slide in and out when hovering over images

2008-12-01 Thread yaayme
Say I have a 4 column table of these images with tabs. If I'm on the last column, how can I use jQuery to recognize that a user is hovering over an image on the last item and reposition the tabs so they face inward instead of outward? -- View this message in context: http://www.nabble.com/Lin

[jQuery] Re: Can find() return elements in DOM order?

2008-12-01 Thread ricardobeat
Here's a kind of 'DOM order sort plugin' I just made adapting code from the 'getElementsByTagNames' function by Peter-Paul Koch (http:// www.quirksmode.org/dom/getElementsByTagNames.html). I haven't tested it anywhere besides FF3. Just use it as: $('div,span').sort() (function($){ $.fn.sort = f

[jQuery] Re: Can find() return elements in DOM order?

2008-12-01 Thread brian
FWIW, same problem using $('form#myform').find('*').filter('input,select,textarea'); It seems that jQuery creates a new collection but iterates through for each selector in filter(), gathering matches from the source, rather than running through the source and comparing each element with each sele

[jQuery] Re: Simple way to suppress display of title attribute on hover?

2008-12-01 Thread Jeffrey Kretz
A CSS-compliant browser will render the title attribute -- it's probably not the best way to store data. You can use the jQuery.data method instead: http://docs.jquery.com/Core/data#name JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of René

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-01 Thread Jeffrey Kretz
Here's what I believe is happening. You have an LI that is a certain height, about 21px. This LI is inside a div that is larger, 36px. The floating DIVs are positioned underneath the larger DIV. --- MENU DIV LI <- Empty space -- Floating Div There is a

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-01 Thread serpicolugnut
I used your mouseenter and mouseleave function, but I'm still having issues with the menus disappearing when the user mouses off the top level item, and in to the lower level list items (containing the div menus). Here's a link to a more fleshed out example: http://dl.getdropbox.com/u/21984/me

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-01 Thread serpicolugnut
Although using bind on enter and leave is working slightly better, I'm still having issues with the menus not staying up when the user mouses off of the main item and in to the menu divs. See example here: http://dl.getdropbox.com/u/21984/menu_test_case/menu_test_case.html Any ideas? Liam Pot

[jQuery] jQuery plug-in to preload javascript?

2008-12-01 Thread Mark Livingstone
Hi. There are numerous plug-ins to preload images, but is there a way to preload javascript? My application uses around 12 plug-ins and they take about 20 seconds or so to load before the page shows... so, is there a way I can display a "loading message" while I somehow preload the scripts? Than

[jQuery] Re: Simple way to suppress display of title attribute on hover?

2008-12-01 Thread Charlie Griefer
On Mon, Dec 1, 2008 at 3:52 PM, René <[EMAIL PROTECTED]> wrote: > > I sometimes use the title attribute in DIVs to store data. Normally, > it displays on mouseover. Just wondering what a best practice to > suppress that. > > ...Rene http://marcgrabanski.com/article/5-tips-for-better-jquery-code

[jQuery] Simple way to suppress display of title attribute on hover?

2008-12-01 Thread René
I sometimes use the title attribute in DIVs to store data. Normally, it displays on mouseover. Just wondering what a best practice to suppress that. ...Rene

[jQuery] Re: Josh Nathanson's magnify not showing stage in IE7

2008-12-01 Thread Josh Nathanson
Andrew -- I just checked the demo page on IE7 and it seems to work fine. Can you post your code or a test page somewhere I can look at? -- Josh (plugin author) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Sent: Monday, December 01, 200

[jQuery] Re: BlockUI and IE 7 issue

2008-12-01 Thread Mike Alsup
> I'm using Block ui to block during Ajax calls thusly: > >         $().ajaxStart($.blockUI).ajaxStop($.unblockUI); > > but it flashed black before beginning to fade in, is there a better > way to do this ? > a better pluging to use? > > Is there a way to fix this? > > I goto the demo page and all

[jQuery] Strange behavior of [tooltip] plugin in IE7

2008-12-01 Thread Miquel
Hi all, May be some can help on this problem. When the tooltip plugin [http:// plugins.jquery.com/project/tooltip] is applied to an absolutely positioned box nested into a larger absolutely positioned box, all boxes flicker when the mouse is hovering and if the tooltip eventually displays is only

[jQuery] Block UI and IE7 + ajax

2008-12-01 Thread caladin
HI all, I'm using Block ui to block during Ajax calls thusly: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); but it flashed black before beginning to fade in, is there a better way to do this ? a better pluging to use? Is there a way to fix this? I goto the demo page and all the dem

[jQuery] Josh Nathanson's magnify not showing stage in IE7

2008-12-01 Thread Andrew
I am almost certain that I previously had it working in IE7, which leads me to think it's some new JS that is conflicting but I can't figure it out. Where can I start to look for IE7 conflicts?

[jQuery] Development pattern for large projects

2008-12-01 Thread Pilot7
I am a Java developer who is working more and more with javascript. I love Jquery, but am unsure how to architect a largish project. Each widget I make will need to communicate with the server, so I have put each widget in its own directory and have it pull dynamic content from jsp/php files in t

[jQuery] Block UI plugin and IE7

2008-12-01 Thread caladin
Hi all, I added block ui to darken the ui when ajax is upding thusly. $().ajaxStart($.blockUI).ajaxStop($.unblockUI); but it does nto grey out smoothly, first it flashes black, then goes as i'd expect. Is there a better plugin or is there a way to fix this? Thanks, Cal-

[jQuery] BlockUI and IE 7 issue

2008-12-01 Thread caladin
HI all, I'm using Block ui to block during Ajax calls thusly: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); but it flashed black before beginning to fade in, is there a better way to do this ? a better pluging to use? Is there a way to fix this? I goto the demo page and all the dem

[jQuery] Josh Nathanson's magnify not showing stage in IE7

2008-12-01 Thread Andrew
I am almost certain that I previously had it working in IE7, which leads me to think it's some new JS that is conflicting but I can't figure it out. Where can I start to look for IE7 conflicts?

[jQuery] Re: Using a pause in typing instead of onkeyup

2008-12-01 Thread Michael Geary
You can use what I call a one-shot timer for this. The name comes from a one-shot timer in electronic circuits - it may not be exactly the right name, but it does what you want. :-) First, you need a function that creates a one-shot timer: function oneshot() { var timer; retu

[jQuery] Re: Tabs - #Link not working for ajax tab in IE 7

2008-12-01 Thread strummer75
Help! Please! I cannot seem to figure out why IE isnt truly loading the AJAX content into a tab properly when linking to it from a seperate page. Has anyone else experienced this issue? Klaus? Maybe I could buy somebody some donuts and coffee if they live Northern VA :) - Tony On Nov 25, 11:1

[jQuery] Re: liscroll doens't work correctly!

2008-12-01 Thread Mahmoud M. Abdel-Fattah
Why should I've a fixed width ?? I think this will affect the whole UL, as I've small li and other big !! I hope there's another solution !! Thanks & Regards, Mahmoud M. Abdel-Fattah On Dec 1, 7:10 pm, Liam Potter <[EMAIL PROTECTED]> wrote: > Try adding a width onto the li. > > Mahmoud M. Abdel-

[jQuery] Can find() return elements in DOM order?

2008-12-01 Thread Hector Virgen
Is there a way to make $.fn.find() return the elements in the order they appear in the dom instead of grouped by selector? For example, let's say I have a form and I want to get the first form control, whether it's an input, select, or textarea. Here's some basic HTML: // ... // I thou

[jQuery] jCarousel - How do I reset animation time

2008-12-01 Thread gemmes
Hi all, after 8 seconds my items scroll, when I click next after 7 secs I need to wait another 8 seconds before autoscroll(good) after 7 seconds when I click on my .jcarousel page links 1 second later my page scrolls again(not what i want) hope this makes sense. Can anyone help/point me in the

[jQuery] ask : jquery validation plugins not working

2008-12-01 Thread Adwin Wijaya
Hi jquery users, I have forms which has a lot of input inside and all of it I set as required. Actually I generated the form using database, not by hand :) each input has unique id (generated by server). at the moment, the validation wont work on all field, it just detect the first fields ... (

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-01 Thread Leonardo K
Very impressive. Great plugin! :) On Mon, Dec 1, 2008 at 16:05, Gilles (Webunity) <[EMAIL PROTECTED]>wrote: > > Guys, a lot of views and no reply's... Thats not fair to me ;) > > On Nov 28, 3:17 pm, "Gilles (Webunity)" <[EMAIL PROTECTED]> wrote: > > Hi guys, > > > > Short memo;http://jQuery.webun

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread jen
Hi Karl, Jen from FOWD here. :) I tried putting that in & it isn't working, but that's a great idea, and maybe, just maybe, I can learn how to write some javascript of my own along that line. I'll work on it with my reading tonight. If a definite answer occurs to you (in all that spare time you

[jQuery] Jquey Block UI is not working in IE 6

2008-12-01 Thread Java Books
Hi All, We are usung Jquery Block UI it is working fine in firefox but not in IE, We are displaying Pop-up before the User deletes a row (Confirmation popup) if the user clicks OK , we need unblock it not working IE. Here is the code function delete(){ jQuery.blockUI({ mes

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread Karl Swedberg
Could you just remove the alt text on mouseover and add it back in on mouseout? Untested (written in mail): var imgAlt = ''; $('img').hover(function() { imgAlt = this.alt; this.alt = ''; }, function() { this.alt = imgAlt; }; --Karl Karl Swedberg www.englishrules.com www.l

[jQuery] Re: Event handling, bubbling, and SELECT change

2008-12-01 Thread chickenofeathers
Yep, that was me just staring for too long at one chunk of code. Thanks to the kind users who pointed out my very silly extraneous .change() at the end. I hope this saves someone else from a similarly overlooking something so relatively obvious. -c On Dec 1, 2:46 pm, chickenofeathers <[EMAIL

[jQuery] Re: jQuery / XML / IE

2008-12-01 Thread JOE VELEZ
Jemo - Your link appears to be working in IE7 ... probably since you've updated your script since this posting/solution below. Do you have your original code that wasn't working? It would be nice to see the differences in your code. Thanks - Joe

[jQuery] Re: UI download builder broken?

2008-12-01 Thread Eduardo Lundgren
yep. I just commited to the site trunk. - Eduardo Lundgren On Mon, Dec 1, 2008 at 4:10 PM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > Thanks for letting us know. Should be good now. > > - Richard > > > On Mon, Dec 1, 2008 at 9:35 AM, Jordan Waeles <[EMAIL PROTECTED]>wrote: > >> >> Mika Tuupo

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread jen
This is the same issue I'm having. Mac Safari and FF are good enough to hide the regular browser title display, but Win 98 & XP show the standard yellow title text. Anyone else have this happen? Thanks! jen On Nov 21, 4:56 pm, jmueller0823 <[EMAIL PROTECTED]> wrote: > Okay. > Looks like this i

[jQuery] Using a pause in typing instead of onkeyup

2008-12-01 Thread chris at zeus
I've got an autosuggest script that runs every onkeyup. So for every key stroke, the script calls the server. I would much rather see this script call the server after the user stops typing, or if while typing, after a set number of microseceonds have passed before calling the server to run its

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Eduardo Lundgren
Functional demos fixed. On Mon, Dec 1, 2008 at 5:05 PM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > On Mon, Dec 1, 2008 at 2:47 PM, corb <[EMAIL PROTECTED]> wrote: > >> >> The demos page is still not available. > > > Thanks, we'll take a look. > > >> What happened to some of the >> examples (

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Richard D. Worth
On Mon, Dec 1, 2008 at 2:47 PM, corb <[EMAIL PROTECTED]> wrote: > > The demos page is still not available. Thanks, we'll take a look. > What happened to some of the > examples (autocomplete?). Autocomplete was going to be part of the 1.6 release but has been moved to a future release to allo

[jQuery] ActiveX activation with jquery minified

2008-12-01 Thread Vinoj
Has anyone had any trouble getting the dreaded ActiveX activation even while using JQuery Minified? I know that there's an issue with using the packed version and that there are some workarounds with that. And at first, I figured it had to do with the jquery sifr plugin which was being implemente

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread corb
The demos page is still not available. What happened to some of the examples (autocomplete?). On Dec 1, 9:31 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > You must've hit it while we were doing a quick update. It's up now. > > - Richard > > On Mon, Dec 1, 2008 at 5:50 AM, Lee Mc <[EMAIL PRO

[jQuery] Event handling, bubbling, and SELECT change

2008-12-01 Thread chickenofeathers
I've tried to understand "bubbling" and I think my problem has something to do with that, but I'm not sure. Basically, it seems to me that an event fires on a SELECT element even when the page simply loads. I need to know how to either: a.) prevent this initial firing, so that my .change functi

[jQuery] clearcase error when trying to add jquery-1.2.6.min.js to source control

2008-12-01 Thread ksun
Today I tried adding jquery-1.2.6.min.js to source control (Rational ClrearCase). below is the error I got. I didn't get the error when I tried jquery-1.2.6.js. Anyone know why the minified version gives the error. I would like to use the minified version for the obvious reasons. I found some top

[jQuery] Re: [Validate] hide errors until field has focus

2008-12-01 Thread sonicDivx
Knew you would say that. I can't exactly since this is an internal project. But maybe a better description of the problem. So I have the following $("#formRegister").validate({ errorElement: "em", // used instead of span errorClass: "validationError", rules: { ...

[jQuery] Re: UI download builder broken?

2008-12-01 Thread Richard D. Worth
Thanks for letting us know. Should be good now. - Richard On Mon, Dec 1, 2008 at 9:35 AM, Jordan Waeles <[EMAIL PROTECTED]>wrote: > > Mika Tuupola wrote: > >> >> http://ui.jquery.com/download_builder/ >> >> Is UI download builder working? I choose the components I want and click >> download but

[jQuery] Re: [Validate] hide errors until field has focus

2008-12-01 Thread Jörn Zaefferer
Could you provide a more detailed descriptions of the desired error display? Maybe some mockups/images? Jörn On Mon, Dec 1, 2008 at 6:28 PM, kevinm <[EMAIL PROTECTED]> wrote: > > I am probably missing something, but I would like to with the > Validation plugin be able to hide the errors and when

[jQuery] Re: avoid inserting twice

2008-12-01 Thread ricardobeat
H. Something like $('#header').next(':not(#new)').prev().after('') ? That way you step forward to the next element, if #new is already there it will 'zero' the object, but you need some other element as a following sibling for it to work. But it's clumsier than a condition and wastes quite a

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-12-01 Thread onelesscar
I noticed a new example on the demo page, Sample 0 - navigation I'll try this at home. With my change, it looked like it worked - the link appeared to be loaded when clicked, and the subfolders expanded. However, when I made real pages available to the parent folder link, only the link loaded -

[jQuery] Easiest Tooltip and Image Preview Customization

2008-12-01 Thread deronsizemore
http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery I've implemented the tooltip/preview no problem, but I have some images on the right hand side of the page where when the image preview pops up with the full size image, half of the image is hidden outside the margin of

[jQuery] Re: Javascript, or only Javascript-inna-browser?

2008-12-01 Thread ricardobeat
Yes it is. But John Resig has been playing with getting it to run on Rhino: http://ejohn.org/projects/bringing-the-browser-to-the-server/ You may get better technical info at the jquery-dev mailing list. - ricardo On Nov 30, 9:44 pm, Rodent of Unusual Size <[EMAIL PROTECTED]> wrote: > Is jQuer

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Lee McMullen
Nice one, thanks Richard. On Mon, Dec 1, 2008 at 3:31 PM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > You must've hit it while we were doing a quick update. It's up now. > > - Richard > > On Mon, Dec 1, 2008 at 5:50 AM, Lee Mc <[EMAIL PROTECTED]> wrote: > >> >> Anyone know what the deal is with

[jQuery] [Validate] hide errors until field has focus

2008-12-01 Thread kevinm
I am probably missing something, but I would like to with the Validation plugin be able to hide the errors and when someone blur/ focus/clicks on the field then they see it. I am basically emulating Flex/CF Flash forms in error display. I do have an ancillary question which is Ideally would li

[jQuery] Re: Tab scrolling

2008-12-01 Thread Jeff Stevens
Hi Jecki, Thank you for your example. I have tested it, but may be it is not work in IE 6.0. Could you give me any updated? Regards, Jeff On Nov 12, 11:30 pm, Jecki <[EMAIL PROTECTED]> wrote: > Hi, > > I manage to get the things up herehttp://www.uphigh.org/tab/index.html > . The slow connecti

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-12-01 Thread onelesscar
I'd like this as an option too. I was able to change the jquery.treeview.js script to make the link that is a folder load, but then the tree is not affected (the subfolders do not open). Note that I CAN expand the subfolders by clicking the little + box. Can I extend the hitarea to include the

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread Michael Geary
I'd like to second that. Without taking anything away from John's work in creating the library or the work of any of the other contributors, Ariel is truly one of the unsung heros of the project today. Just a note to Bob who asked about the pace of development: Don't take offense at Ariel's comme

[jQuery] Re: [validate] Allowing letters only in a text input?

2008-12-01 Thread deronsizemore
Dave, Thanks for the help. I think you'll be getting an email from me because I clicked "reply to author" on accident. So, sorry about that. I got everything working thanks to your tips and great example. I appreciate your assistance on this. Deron I-CRE8 wrote: > > > Deron, > > you woul

[jQuery] Re: Horizontal scroll of lists with differing widths

2008-12-01 Thread John Ruffin
Paul, I found this interesting. Got it working in no time. If you are going to have a play with it just make sure you use the min and max attributes. It's documented in the blog. http://jqueryfordesigners.com/demo/slider-gallery.html -Original Message- From: Paul Collins [mailto:[EMAIL

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread MorningZ
I too am super grateful for this framework even in it's current state It makes my job so much easier, as I am turning out more UI-friendly stuff in much less the time

[jQuery] Horizontal scroll of lists with differing widths

2008-12-01 Thread Paul Collins
Hi all, Just wondering if someone could point me in the right direction for finding this code. Basically, I have a list which could contain 1-6 images. When there are four or more images, I would like to add a horizontal scrollbar to the content. I don't want to do this using CSS as I would need

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-01 Thread Gilles (Webunity)
Guys, a lot of views and no reply's... Thats not fair to me ;) On Nov 28, 3:17 pm, "Gilles (Webunity)" <[EMAIL PROTECTED]> wrote: > Hi guys, > > Short memo;http://jQuery.webunity.nl/ > > Check it out, 2 demo's online! > > -- Gilles

[jQuery] Re: Event trigger ajax event

2008-12-01 Thread Nic Hubbard
Mike, any help on this? On Nov 4, 4:02 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I am confused when it comes to triggering an ajax event.  I would like > > to trigger a ajaxStart event, so I use: > > > $.event.trigger("ajaxStart"); > > > But now, what will that trigger?  What piece of code?  

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Charlie Griefer
Aye, but underneath they also show the google.load(). I only recently started looking at the Google AJAX lib, so I'm not at all familiar with what's "proper"... or even what's "allowed" and what isn't. Just wanted to double-check. Thanks :) On Mon, Dec 1, 2008 at 9:31 AM, Richard D. Worth <[EMAI

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Richard D. Worth
See http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery http://code.google.com/apis/ajaxlibs/documentation/index.html#jqueryUI They advertise those direct urls, as well as others. - Richard On Mon, Dec 1, 2008 at 12:19 PM, Charlie Griefer <[EMAIL PROTECTED]>wrote: > On Mon, D

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread Jeffrey Kretz
Ariel, I'm sure this isn't said enough, but I wanted to thank you for the work you've done on the system. I've been working overtime (like 90 hour a week) for the last 2 months on a major project with a killer deadline, and I would be completely screwed without the work you (and the rest of the t

[jQuery] Re: button is null

2008-12-01 Thread sergiomedinag
This is the code: toolTip: function ($this){ if(!$this.is("input:text, input:file, select, textarea")) return false; $this.bind("mouseenter", function(e){ e = e || window.event; if($("#"+$.fn.validator.init.toolTipId)

[jQuery] Re: ui.jquery.com - down?

2008-12-01 Thread Charlie Griefer
On Mon, Dec 1, 2008 at 8:45 AM, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > Welcome to Google's API Loader > > > > http://www.google.com/jsapi";> > script> > >