[jQuery] Re: Question about slice

2008-06-24 Thread RobG
On Jun 25, 12:27 pm, jack <[EMAIL PROTECTED]> wrote: > Just a beginner's question. I found slice(start, end) seems doesn't > pick up that the last one specified by 'end'. Such as slice(0, 3), it > picks up 0, 1 and 2. Is that correct? You might want to check the ECMAScript specification: 15.4.4.

[jQuery] Re: jQuery upload progress bar, maybe for form plugin

2008-06-24 Thread Aaron Heimlich
How will jquploader2 compare to something like SWFUpload[1] (besides the obvious fact that jquploader2 will leverage jQuery)? [1] http://www.swfupload.org On Wed, Jun 25, 2008 at 1:03 AM, hubbs <[EMAIL PROTECTED]> wrote: > > When will jquploader2 be done? > > On Jun 24, 10:54 pm, "Alexandre Plen

[jQuery] Re: jQuery upload progress bar, maybe for form plugin

2008-06-24 Thread hubbs
When will jquploader2 be done? On Jun 24, 10:54 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > On Wed, Jun 25, 2008 at 7:25 AM, hubbs <[EMAIL PROTECTED]> wrote: > > > I have been reading different posts that talk about a jquery upload > > progress bar, but none of them gave a good soluti

[jQuery] Re: jQuery upload progress bar, maybe for form plugin

2008-06-24 Thread Alexandre Plennevaux
On Wed, Jun 25, 2008 at 7:25 AM, hubbs <[EMAIL PROTECTED]> wrote: > > I have been reading different posts that talk about a jquery upload > progress bar, but none of them gave a good solution. > > Is there a good solution for a upload progress bar, that can > accurately progress, for file/image up

[jQuery] jQuery upload progress bar, maybe for form plugin

2008-06-24 Thread hubbs
I have been reading different posts that talk about a jquery upload progress bar, but none of them gave a good solution. Is there a good solution for a upload progress bar, that can accurately progress, for file/image uploads, so that the user can see how long it is taking? Also, is there a way

[jQuery] Re: jQuery.validate: If the A field is changed, how to call the validate method of B field?

2008-06-24 Thread zhudp.cn
thanks very much! $("#B").data("previousValue", null); isn't effective, but $("#B").data("previousValue", ""); is OK. It's very A-OK. B: { remote: function(){ return "/validateABExist.do?A="+$("#A").val() +"&date="+new Date().getTime()} } $("#A")

[jQuery] Re: Question about slice

2008-06-24 Thread Ariel Flesler
Check this, works exactly the same: http://snipurl.com/2ofp4 Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 24 jun, 23:27, jack <[EMAIL PROTECTED]> wrote: > Just a beginner's question. I found slice(start, end) seems doesn't > pick up that the last one specified by 'end'. Such as slice

[jQuery] Re: question about slice()

2008-06-24 Thread Karl Rudd
Correct, this is as intended. http://docs.jquery.com/Traversing/slice As noted in the docs, it behaves like the "native" JavaScript Array.slice function. "It extracts up to, but not including, the 'end' element (if no 'end' is specified, the default is the very last element)." - from

[jQuery] Re: How do i display a tooltip from a hidden div?

2008-06-24 Thread Karl Swedberg
Hi Mark, Sorry I haven't been able to reply to your plea until now. I've been off the grid for a couple weeks. Take a look at Default Style example #6 at http://plugins.learningjquery.com/cluetip/demo/ local, with arrows: This one uses local content from a hidden div element and displays

[jQuery] question about slice()

2008-06-24 Thread jack
I found slice(start, end) doesn't pick up the last one specified by the 'end'. Such as slice(0, 3), it pick up 0, 1 and 2. Is that the way it works? Jack

[jQuery] Question about slice

2008-06-24 Thread jack
Just a beginner's question. I found slice(start, end) seems doesn't pick up that the last one specified by 'end'. Such as slice(0, 3), it picks up 0, 1 and 2. Is that correct? Jack

[jQuery] [validate] automatically clear error messages when pass validation rule?

2008-06-24 Thread Josh Joy
Hi, How do I clear the error messages when it passes the validation rules? I was hoping it would clear automatically. Is there some value I need to set or some configuration necessary? Thanks, Josh

[jQuery] Re: How can I downlod that jQuery Ipod Drilldown menu?

2008-06-24 Thread MorningZ
"Some one can help me please?" Why not use the "Contact Us" link on the top right and ask them?

[jQuery] Tablesorter 2.0 Plugin To Jquery: Highlight Sorted Column

2008-06-24 Thread dghosh
I am new to this plugin and I was wondering if it is possible to highlight all the rows that fall under the column that just got sorted? -- View this message in context: http://www.nabble.com/Tablesorter-2.0-Plugin-To-Jquery%3A-Highlight-Sorted-Column-tp18103011s27240p18103011.html Sent from th

[jQuery] Re: Show/Hide divs beginning with a specified string

2008-06-24 Thread Adam
The solution by WoolyNinja works great, with a change of the line: $("div[id^='showhide_']").click(function(){ to: $("img[id^='showhide_']").click(function(){ as it is the image that I wanted to capture the click event for. It could not be done by show/hide classes in a simple way as there will

[jQuery] Re: javascript syntax question

2008-06-24 Thread Karl Rudd
The short: Define and immediately execute an anonymous function. The long: function blah() { ... } // define a named function blah(); // execute a named function function() { ... } // define a function without a name (anonymous) // can't execute the function because it doesn't hav

[jQuery] Re: problem with toggle function

2008-06-24 Thread Jared Henderson
Thanks Scott, I did manage to get it working, by switching to toggleClass("makered") instead of using the toggle function. thanks! On Tue, Jun 24, 2008 at 5:47 PM, Scott Sauyet <[EMAIL PROTECTED]> wrote: > > jaredh123 wrote: > >> > onclick="javascript:jQuery('#comments-count-3').toggle(function

[jQuery] auto complete question

2008-06-24 Thread Sridhar
Hi, I am using this plug-in in our website. It works great. I have a question about using this in a gridview. I have a gridview which has template columns that has the textboxes. The grid will have atleast 200 rows. I would like to use autocomplete for all those textboxes in the grid. I am usin

[jQuery] Re: selector with regular expression?

2008-06-24 Thread WoolyNinja
The one I use for this is the [attribute^=value] selector (attribute value starts with...). $("[id^='radio']") On Jun 24, 2:29 pm, Ritz <[EMAIL PROTECTED]> wrote: > Hi, > > Apologize, if this is a really basic question - but I couldn't find a > solution for this > > If I had elements like > >

[jQuery] auto complete question

2008-06-24 Thread Sridhar
Hi, I have posted this same question before. but I am not sure if it posted or not. so I am posting again. I am trying to use the autocomplete plugin in a gridview that has around 200 rows and 9 columns each with a text box. I am using the local data option. my question is how can I use the aut

[jQuery] javascript syntax question

2008-06-24 Thread [EMAIL PROTECTED]
i was looking for an explanation for some of the syntax that jquery uses but i couldn't find it anywhere (or it seems to be). Anyways the syntax that i was looking for is as follows: (function(){.})(); I am assuming that it is a javascript syntax but i don't know what it is called. Also If

[jQuery] Re: Problem: hide/show animation tied to an anchor tag scrolls page back up to top

2008-06-24 Thread WoolyNinja
The first and easiest thing I can think of is add a return false; to the end of the anchor's click javascript. $('#anchor').click(function(){ $('#div').fadeIn(); return false; }); On Jun 24, 2:05 pm, Handsome Homeless <[EMAIL PROTECTED]> wrote: > I am having a problem with a fadein()/fade

[jQuery] Re: cycle plugin: different fx based on prev vs. next?

2008-06-24 Thread fallingandlaughing
Jeepers creepers, I'm embarrassed that I missed that option. Thank you for pointing it out! On Jun 24, 4:19 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I've set up a cycle slideshow with previous/next navigation. It's > > working beautifully, except for one nagging issue: I want the next > > sl

[jQuery] Re: [validate] Validation Plugin issue when using TinyMCE

2008-06-24 Thread Josh Nathanson
I think maybe you want element.is("textarea") (no colon) Otherwise that part of the conditional will never fire. -- Josh - Original Message - From: "shapper" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Tuesday, June 24, 2008 4:23 PM Subject: [jQuery] Re: [validate] Validation

[jQuery] Re: Dynamically reference jQuery and delay execution until it is loaded?

2008-06-24 Thread Michael Geary
The code doesn't work because you are loading jQuery dynamically, so it is executed *after* your plugins which are loaded with inline script tags. I would do it like this: function script( url ) { document.write( '