[jQuery] Re: [Beginner alert] How do I output the selected part of the DOM in a web page in a JS alert()?

2008-12-01 Thread stephane_r
ricardobeat wrote: Hi there, Where in the example is the class 'third' you mentioned? It was in my test text at various random places for the example, but I still have not figured how to post snippets without parts of it being eaten/interpreted as html by the list. Still new with this

[jQuery] Re: accordion - trigger *and* link possible?

2008-12-01 Thread Jörn Zaefferer
Have you tried to setup the accordion with event:mouseover? That way click events are free to happen, so you could even click a header. Jörn On Mon, Dec 1, 2008 at 2:46 AM, snlsn [EMAIL PROTECTED] wrote: Thanks Jörn; an accordion header is just that, not two things at once. Okay. I'll

[jQuery] Re: avoid inserting twice

2008-12-01 Thread takeshin
On 30 Lis, 18:30, ricardobeat [EMAIL PROTECTED] wrote: And that can be shortened to: var h = $('#header'); if (!h.next(':not(#new)').length) {      h.after('div id=newtest/div'); } or, logically, you wouldn't insert two elements with the same ID, so you could simply use if

[jQuery] Re: listnav plugin

2008-12-01 Thread Alexsandro_xpt
Hello all, I would like to add somes methods like refresh/add/remove item from list too. Thz. On 1 dez, 05:04, idgcorp [EMAIL PROTECTED] wrote: Hi Jack, thanks for the reply, yes Im just adding/removing via jq Ive created a workaround that solves this one for me. Also I just posted

[jQuery] Makijg a carousel plugin (jCarousel, jCarouselLite, and others) work with modal overlay?

2008-12-01 Thread BigFisch
Seems like every carousel plugin doesn't seem to work with any modal overlay. Meaning something like Boxy or Facebox. I think this is due to the carousel plugins looking for a height and width to set on the container element. One mentioned showing and hiding the carousel div to get the plugin to

[jQuery] ui.jquery.com - down?

2008-12-01 Thread Lee Mc
Anyone know what the deal is with ui.jquery.com being down? I'm just getting a default Apache page. Any ideas when it will be available again?

[jQuery] Re: Ajax, divs and links

2008-12-01 Thread Milena Araujo
Nobody can help me ? On Sat, Nov 29, 2008 at 10:53 AM, Milena [EMAIL PROTECTED] wrote: Hello all ! So, I'm doing a site using jquery and what I have is this: I have 3 main divs. in the last one I have a form that sends the info to a servlet and this returns some html (links) and put via js

[jQuery] jquery and comet

2008-12-01 Thread Javier Martínez
Hi all! On my latest project I have to add a chat to a web. To do this, I'm thinking on comet. I see there are some ways of doing this. One of them is to make continuous ajax calls to the server. But this is not really comet. So, the question is... Has anybody some information about a

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread Bob den Otter
Hi Rey, Thanks for the reply.. I eagerly await any and all new releases. ;-) Cheers, Bob. I think one of the things that we've done is spoiled jQuery developers by releasing often. Obviously, we try hard to do that (spoil jQuery developers) because we want you guys to have the very best

[jQuery] Re: Problem with prev() in IE

2008-12-01 Thread flycast
Sure enough! Note to self...make sure that html is valid before messing with the DOM. All kidding aside, using a ul without being in a li is something I have done many times before. The difference here is using javascript to mess with the DOM. I am new to javascript. Thanks a bunch. On Nov 30,

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
Thanks for the latest code, it seems it's working fine, but I only tried your example and didn't port it to my page. I tested it on IE and FF and both were ok. In Opera I was receiving the evente after changing some setting, but the context menu is still there. Anyway, thanks again :) On Nov

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
I agree with you about double right-clik and Mac users, however, it's only an option available in part of the page (a DIV for example) to do something that can be also done in another way, so Mac users will not be screwed :) Thanks for the suggestion. On Nov 30, 10:07 pm, Jeffrey Kretz [EMAIL

[jQuery] Only showing three images

2008-12-01 Thread penteren
This is probably something extremely simple, so forgive my newbie- ness. I'm using the jcarousel script on the following page: http://gailang.clearconceptsdesign.com/web_design-zh.php (please ignore the mess). It seems to work just fine in Firefox and IE 7, but in Chrome it shows the first

[jQuery] autocomplete jquery plugin - multiple fields populated with webservice

2008-12-01 Thread rmada
Hi, What I try to do is to hook up the autocomplete plugin to multiple text fields. These fields are interrelated but not in a hierarchical way. Let's say there are 6 fields. When user starts typing first letter in one of these fields browser should query web service to gather the data for this

[jQuery] Augmentation

2008-12-01 Thread DiTieM
Maybe what I am pretending to do is something that JQuery wants to avoid, but I am very frustrated with the following idea. Let's image we have a simple class: $.widget( ui.mywidget, { ... f: function ( ) { fff( ) ; ... } // to be overriden fff: function( ) { } } ) ; and now I

[jQuery] Notification when content was updated via AJAX

2008-12-01 Thread Raphael
I'm having a little problem: There are two independent modules (I'm working in a drupal environment). Well, one module polls a table via AJAX request and the other module provides some services when a tr element has been clicked. BUT: On Pageload the click event is bound to the tr element. When

[jQuery] Re: submenu position: left or right

2008-12-01 Thread marco
i renewal my question.

[jQuery] Can jQuery genrated tag to trigger handler?

2008-12-01 Thread harry
Hi, all, I simply create a button to generate a hyperlick(or button) in html, can the generated link or button to call controller in mvc? here just simple code to illustrate my question: script type=text/javascript $(pageReady); function pageReady() { var tag = a

[jQuery] Livequery Forms

2008-12-01 Thread Fabiof
Here is my situation. I am loading forms with ajax on the site. I want the form responses to load in the same spot when i submit. I can use livequery and get the first form to load with 'click' event, but when i get to a form that calls a second form i cannot get livequery to fire. How can i have

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
One of the most things that I hate in some websites is disabling the right-click and/or the context menu, so I'm totally with you about this, however, think about Google Maps, they have double right-click and they disable the context menu on Maps area, which can't be discribed as bad UI design,

[jQuery] Re: Augmentation

2008-12-01 Thread Dirceu Barquette
to call the widget: $('div/div').attr({id:'the_widget'}).mywidget(fff:function(){}); Dirceu 2008/12/1 DiTieM [EMAIL PROTECTED] Maybe what I am pretending to do is something that JQuery wants to avoid, but I am very frustrated with the following idea. Let's image we have a simple class:

[jQuery] Submiting custom attributes to server side with form pluggin

2008-12-01 Thread ristov_nca
Hi everyone, I've been trying to use my custom attributes that are set on the client side from the server side code but it wasn't posible because the form pluggin doesn't seem to serialize these attributes when submitting the form via AJAX. If the custom attribute is predefined in the HTML

[jQuery] Re: [treeview] Brief flash of expanded tree

2008-12-01 Thread Dirceu Barquette
sorry. my english is terrible... I didn't understand the example you give... Another issue: I would like your opinion about my other project: http://isabeladraw.sourceforge.net Comments are very welcome!!! thanks Dirceu Barquette 2008/12/1 Andrew [EMAIL PROTECTED] Thanks Dirceu, but i'm

[jQuery] Re: Submiting custom attributes to server side with form pluggin

2008-12-01 Thread Liam Potter
I'm developing an application and came across this problem. The asp programmer got around it by taking the values from the forms, then applying the values to a hidden form element with the right name for each, this seemed to do the trick. ristov_nca wrote: Hi everyone, I've been trying to

[jQuery] Re: Submiting custom attributes to server side with form pluggin

2008-12-01 Thread ristov_nca
Can you please give me some kind of example or reference to another post? Thanks On Dec 1, 2:22 pm, Liam Potter [EMAIL PROTECTED] wrote: I'm developing an application and came across this problem. The asp programmer got around it by taking the values from the forms, then applying the values

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread Ariel Flesler
I'd simply check the trac to see if development halted, instead of asking it publicly in such a challenging way. http://dev.jquery.com/report/28 I've been working pretty hard all this time, closing millions of tickets (sadly most of them invalid). And while I do understand your request, I

[jQuery] UI download builder broken?

2008-12-01 Thread Mika Tuupola
http://ui.jquery.com/download_builder/ Is UI download builder working? I choose the components I want and click download but nothing happens. It just resets the form. -- Mika Tuupola http://www.appelsiini.net/

[jQuery] Re: Adding IMG attributes

2008-12-01 Thread Andy Matthews
The best way (IMO) to know if they're working is to view this site in Firefox with the Web Developers Toolbar. Under the View Source button on the toolbar is an option for view generated source. This will show you the results of the page after any JavaScript has been executed. It'll display new

[jQuery] Re: UI download builder broken?

2008-12-01 Thread Jordan Waeles
Mika Tuupola wrote: http://ui.jquery.com/download_builder/ Is UI download builder working? I choose the components I want and click download but nothing happens. It just resets the form. I have the exact same issue. Regards, -- Jordan

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread Andy Matthews
I don't think there's a default double right click event handler, but this wouldn't be that hard to write. Psuedo code --- $('#someElement').rightclick(function(){ totalClicks = 0; if (totalClicks == 2) { // do some stuff totalClicks = 0;

[jQuery] Re: Back Button

2008-12-01 Thread OhNoMrBill
I found a way to work with Klaus's plugin. But, one problem has come up. My URLS work - and look like this: a href=/Alfredo title=Alfredo class=remote onclick=$.Content_SearchTag('Pasta','Alfredo');Alfredo/a However, the destination behind this link also has similar links on it. When it is

[jQuery] Re: Image rollover using jQuery

2008-12-01 Thread Andy Matthews
That's a terrible way of doing a swap image. That's adding a load of crap into the actual HTML, most likely creating invalid xHTML and if that's the author's solution then you might as well just use Dreamweaver as it will do that for you. A better solution is to use seasoup's method, or one

[jQuery] jquery validation trailing comma error

2008-12-01 Thread [EMAIL PROTECTED]
Hey guys, i read about that trailing comma error in several other posts, but i just can't fix that problem. IE7 still submits the form even if the required fields are empty. Here's my jquery code: Hope you can help me. thanks in advance. var validator = $(#adventsform).validate({

[jQuery] thickbox and blockui conflict

2008-12-01 Thread Tim
i appear to be having a thickbox and blockui conflict. blockui works on the page fine until i open and close a thickbox. i am using tb_remove() to close the box. after which, i get a message in firebug that blockui is not a function. any ideas? thanks.

[jQuery] Re: thickbox and blockui conflict

2008-12-01 Thread Tim
nevermind...i had jquery and blockui initialized in the main page and the thickbox. oops. i just took them out of the thickbox and it worked. On Dec 1, 9:04 am, Tim [EMAIL PROTECTED] wrote: i appear to be having a thickbox and blockui conflict. blockui works on the page fine until i open and

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

2008-12-01 Thread idgcorp
This code saved my life, sounds like it will save yours too :) Welcome to Google's API Loader script type=text/javascript src=http://www.google.com/jsapi;/ script script type=text/javascript google.load(jquery, 1.2.6); google.load(jqueryui, 1.5); /script and its super fast.

[jQuery] Re: accordion - trigger *and* link possible?

2008-12-01 Thread snlsn
Jörn Thanks for your continued interest and suggestions. Have you tried to setup the accordion with event:mouseover? That way click events are free to happen, so you could even click a header. Well - I did fiddle with the version on the jQuery UI demo page. In general I don't personally care

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

2008-12-01 Thread Richard D. Worth
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 ui.jquery.com being down? I'm just getting a default Apache page. Any ideas when it will be available again?

[jQuery] Re: Augmentation

2008-12-01 Thread DiTieM
On Dec 1, 9:00 pm, Dirceu Barquette [EMAIL PROTECTED] wrote: to call the widget: $('div/div').attr({id:'the_widget'}).mywidget(fff:function(){}); I must be missing something :((. I have tried to reduce my code to the next simple example. Notice I want to override the method A.fff in B.init

[jQuery] Re: Notification when content was updated via AJAX

2008-12-01 Thread Sam Collett
The Live Query plugin may help in this circumstance: http://plugins.jquery.com/project/livequery --Sam On Dec 1, 12:43 pm, Raphael [EMAIL PROTECTED] wrote: I'm having a little problem: There are two independent modules (I'm working in a drupal environment). Well, one module polls a table

[jQuery] validation: show only certain errors messages

2008-12-01 Thread dmikester1
I am using the validation plugin. Very cool! I want it to only display the specific error the my email input and for nothing else. I just have a summary of X errors at the top and each field is highlighted yellow and bordered red. How can I have it only show the specific error for the email

[jQuery] Re: jquery validation trailing comma error

2008-12-01 Thread Jörn Zaefferer
Can you provide a testpage? Jörn On Mon, Dec 1, 2008 at 2:47 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey guys, i read about that trailing comma error in several other posts, but i just can't fix that problem. IE7 still submits the form even if the required fields are empty. Here's

[jQuery] Re: validation: show only certain errors messages

2008-12-01 Thread Jörn Zaefferer
You'll find this in a few examples: $.validator.messages.required = ; That sets the default message for required to an empty string, which should be what you are looking for. Jörn On Mon, Dec 1, 2008 at 5:10 PM, dmikester1 [EMAIL PROTECTED] wrote: I am using the validation plugin. Very

[jQuery] Re: accordion - trigger *and* link possible?

2008-12-01 Thread Jörn Zaefferer
To make the mouseover a better interaction, some hoverintent magic is useful. Again something planned: http://ui.jquery.com/bugs/ticket/3614 Jörn On Mon, Dec 1, 2008 at 4:26 PM, snlsn [EMAIL PROTECTED] wrote: Jörn Thanks for your continued interest and suggestions. Have you tried to setup

[jQuery] Re: Can jQuery genrated tag to trigger handler?

2008-12-01 Thread brian
It's a scope problem. When javascript parses that $(#goto).click(...) line, #goto does not yet exist. You need to assign the click handler to #goto within the same function that creates the link. Try this: function pageReady() { $(#go).click(function() { $(div#content).append('a

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

2008-12-01 Thread Mike Alsup
Welcome to Google's API Loader script type=text/javascript src=http://www.google.com/jsapi;/ script script type=text/javascript google.load(jquery, 1.2.6); google.load(jqueryui, 1.5); /script If you link directly to the scripts that you need you can eliminate the unnecessary google

[jQuery] liscroll doens't work correctly!

2008-12-01 Thread Mahmoud M. Abdel-Fattah
Hello, I'm using liScroll here : http://alia.hdeya.com I don't know what's the problem ! Thanks Regards, Mahmoud M. Abdel-Fattah

[jQuery] liscroll doens't work correctly!

2008-12-01 Thread Mahmoud M. Abdel-Fattah
Hello, I'm using liScroll here : http://alia.hdeya.com I don't know what's the problem ! Thanks Regards, Mahmoud M. Abdel-Fattah

[jQuery] Ajax to return more values

2008-12-01 Thread me-and-jQuery
Ho-ho-ho. I wonder what is the best practice if I want to get 2 or three values back to function with ajax. The last value would be lots of html code and first two kind of state values (number or short string). I don't like jSON a lot, since you need to return one-line response and you must be

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

2008-12-01 Thread Liam Potter
Try adding a width onto the li. Mahmoud M. Abdel-Fattah wrote: Hello, I'm using liScroll here : http://alia.hdeya.com I don't know what's the problem ! Thanks Regards, Mahmoud M. Abdel-Fattah

[jQuery] Re: Ajax to return more values

2008-12-01 Thread Andy Matthews
If you're using a 3rd party JSON library, then you'd just pass in whatever language construct you've got and let the library encode for you. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of me-and-jQuery Sent: Monday, December 01, 2008

[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 script type=text/javascript src=http://www.google.com/jsapi;/ script script type=text/javascript google.load(jquery, 1.2.6); google.load(jqueryui, 1.5); /script If you link

[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;

[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

[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, Dec

[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 [EMAIL

[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?  Do I need to

[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] 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: 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] 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: [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 would need

[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

[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: 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 connection

[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

[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] 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 jQuery

[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

[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] Re: avoid inserting twice

2008-12-01 Thread ricardobeat
H. Something like $('#header').next(':not(#new)').prev().after('div id=test/ div') ? 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

[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: 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 nothing

[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] 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

[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

[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 PROTECTED]

[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

[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 allow

[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 (autocomplete?).

[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 is

[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 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 Tuupola wrote:

[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: 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: 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

[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({

[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] 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.webunity.nl/

[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] 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

[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: form id=#myform

[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.

[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

[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

[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] 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] 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

[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

[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 the demos

  1   2   >