[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Aaron Heimlich
On 9/5/07, Pops <[EMAIL PROTECTED]> wrote: > > Yes, $('#foobar') returns the 1st one, but you can have as many > id="foobar" your applications needs and use this to find them all: While that's technically true, IDs are meant to be unique to a page. For what you're describing, using CSS classes i

[jQuery] Re: bind an event to success validation

2007-09-04 Thread SeViR
[EMAIL PROTECTED] escribió: @JOSE I wrote this code that is working but I think there is a better way: $(document).ready(function(){ $("#treeform").validate({ errorContainer: $("#messageBox1"),

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Pops
On Sep 4, 2:53 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > One issue though...$('#foobar') would only return the first occurrence of > foobar because it uses getElementbyID which returns the first occurrence. > That's desired behavior as there should only ever be one ID of a certain > name

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Pops
Thanks Klaus. I'm still learning. Maybe should show the light here. I have a 7 year old Windows HELP TOC generator that creates an UL list of about 500 links, its about 4 levels deep.

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Joel Birch
On 9/5/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > Yeah, I mean *if* there was a version of that logo for the black cap, > that would be awesome. Know of anyone that could make a version like > that? ;) > > Rey I'll ask around ;) It wouldn't be ready for a day or so though (I'm working for the

[jQuery] Slide UP plugin?

2007-09-04 Thread Andy Matthews
I have some content that will be pinned to the bottom of the page. When a button inside this container is clicked, I'd like to container to expand vertically upwards. Is there such a plugin? If not, does anyone have a quick suggestion of how I might got about doing something like this?

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
Yeah, I mean *if* there was a version of that logo for the black cap, that would be awesome. Know of anyone that could make a version like that? ;) Rey Joel Birch wrote: Oh wow, what a cool thing to wake up to this morning. The quality looks great! Well done Rey, you're a CafePress demon!

[jQuery] Re: Live Query and tables problem

2007-09-04 Thread Brandon Aaron
I wasn't able to see that site but I went ahead and created a small test case based on the information you provided. http://brandonaaron.net/jquery/issues/livequery/table_test/table_test.html I'm not able to reproduce the error you are getting. -- Brandon Aaron On 9/4/07, Jean <[EMAIL PROTECTED

[jQuery] Re: editing superfish dropdown menu css

2007-09-04 Thread james_027
Thanks Joel, I just rename my css, from superfish.css to menu.css, I guess it must have been cache from your site. Want to thank you for this great work of yours, I am not an css expert and somewhere in this forum I read that you'll be putting some comments on the css file. cheers, James On Se

[jQuery] Re: Making sure a radio button is checked

2007-09-04 Thread Joel Birch
Hi Shaun, Try this, although it is untested: function validate_form (){ var valid = true; for (var i=1, i<4, i++){ if ( $(':checked',document.survey['question'+i]).length == -1 ){ alert ( 'Please answer question #' + i );

[jQuery] Re: editing superfish dropdown menu css

2007-09-04 Thread Joel Birch
> Want to thank you for this great work of yours, I am not an css expert > and somewhere in this forum I read that you'll be putting some > comments on the css file. Ah yes, the comments... got to do that. Cheers Joel.

[jQuery] Re: bind an event to success validation

2007-09-04 Thread [EMAIL PROTECTED]
@JOSE I wrote this code that is working but I think there is a better way: $(document).ready(function(){ $("#treeform").validate({ errorContainer: $("#messageBox1"), errorLabelContain

[jQuery] Re: editing superfish dropdown menu css

2007-09-04 Thread james_027
Thanks Joel, I just rename my css, from superfish.css to menu.css, I guess it must have been cache from your site. Want to thank you for this great work of yours, I am not an css expert and somewhere in this forum I read that you'll be putting some comments on the css file. cheers, James On Se

[jQuery] Re: editing superfish dropdown menu css

2007-09-04 Thread james_027
Thanks Joel, I just rename my css, from superfish.css to menu.css, I guess it must have been cache from your site. Want to thank you for this great work of yours, I am not an css expert and somewhere in this forum I read that you'll be putting some comments on the css file. cheers, James On Se

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Joel Birch
Oh wow, what a cool thing to wake up to this morning. The quality looks great! Well done Rey, you're a CafePress demon! I guess that black hat needs a bit of love - *if* there was a version of the logo where the type was white, can they print white directly onto the black cap? I can't wait to ge

[jQuery] Re: Table Pager / Pagination Plugin. Arrows around the page numbers < 1 2 3 4 5 > (next and previous)

2007-09-04 Thread cfdvlpr
Anyone else done this? I think where I am having trouble is capturing and setting the current page. Here's what I've modified so far that isn't working quite right yet: $(document).ready(function() { $('table.paginated').each(function() { var currentPage = 0; var $table = $(this); $

[jQuery] Re: blockUI IE6 checkbox

2007-09-04 Thread Mike Alsup
seedy, Try adding this to your page: $.blockUI.defaults.fadeOut = false; I think this is an issue with animation. Mike On 9/4/07, seedy <[EMAIL PROTECTED]> wrote: > > > > Has anyone been able to reproduce this or am I just crazy ? > > > seedy wrote: > > > > I have a few checkboxes that fire

[jQuery] Making sure a radio button is checked

2007-09-04 Thread Shaun Kester
My HTML: Employee Engagement 1. I am proud to be part of the [redacted]. 1 2 3 4 5 2. I see myself working for the [redacted] three years from now. 1 2 3 4 5 3. The work I do is very important to the success of our organization. 1 2 3 4 5 Before submit, I run this function to make sur

[jQuery] Making sure a radio button is checked

2007-09-04 Thread Shaun Kester
My HTML: Employee Engagement 1. I am proud to be part of the [redacted]. 1 2 3 4 5 2. I see myself working for the [redacted] three years from now. 1 2 3 4 5 3. The work I do is very important to the success of our organization. 1 2 3 4 5 Before submit, I run this function to make sur

[jQuery] Re: Bug in before, and after??

2007-09-04 Thread Klaus Hartl
Andy Matthews wrote: I'm getting some unexpected results using these three functions and I wondered if this was a bug. This is what I'm trying to accomplish: Lead Submissions I can code this manually, but I thought it would be nice to use jQuery to remove some

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Klaus Hartl
Pops wrote: You can so do multiple selects, like find all divs and h3 $('div h3') but if you use the comma: $('div,h3') that says find the H3 tag that is within div, I think It's vice versa. Find all div and h3 *elements*: $('div, h3') // grouping Find all h3 elements that are desc

[jQuery] Bug in before, and after??

2007-09-04 Thread Andy Matthews
I'm getting some unexpected results using these three functions and I wondered if this was a bug. This is what I'm trying to accomplish: Lead Submissions I can code this manually, but I thought it would be nice to use jQuery to remove some of the redundant code. So

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
hahahahaha! Enjoy the hat man and thanks for supporting the project. Rey Benjamin Sterling wrote: You are too awesome, my wife just told me to buy the Khaki, said it was thinning :( I am getting black tho, have to stand up to the (wo)Man some how!!! On 9/4/07, Rey Bango <[EMAIL PROTECTED]>

[jQuery] interface error in IE6

2007-09-04 Thread Ad4m
Hi, I'm using jquery with interface plugin for cropping images. In IE6 i'm getting an error 80020101. Enyone knows what does it mean?? -- Serdecznie pozdrawiam Adam Ludwiński [EMAIL PROTECTED] http://ludwinski.net

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Benjamin Sterling
You are too awesome, my wife just told me to buy the Khaki, said it was thinning :( I am getting black tho, have to stand up to the (wo)Man some how!!! On 9/4/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Black hat added!! :D > > Rey > > Benjamin Sterling wrote: > > Rey, > > I will be the first

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
Black hat added!! :D Rey Benjamin Sterling wrote: Rey, I will be the first to complain; I went to go buy a hat, but only white and Khaki!!! Can we get a black? :) pssst: I will buy a hat either way. On 9/4/07, Mika Tuupola <[EMAIL PROTECTED]> wrote: On Sep 4, 2007, at 9:07 PM, Rey Bango

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Benjamin Sterling
Rey, I will be the first to complain; I went to go buy a hat, but only white and Khaki!!! Can we get a black? :) pssst: I will buy a hat either way. On 9/4/07, Mika Tuupola <[EMAIL PROTECTED]> wrote: > > > > On Sep 4, 2007, at 9:07 PM, Rey Bango wrote: > > > Not sure what to tell ya Glen. I'm se

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Mika Tuupola
On Sep 4, 2007, at 9:07 PM, Rey Bango wrote: Not sure what to tell ya Glen. I'm see them in both IE & FF. Actually first time I clicked link I saw nothing too. Second time cool jQuery stuff appeared ;) -- Mika Tuupola http://www.appelsiini.net/

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
Thats a cool idea! Rey Dan G. Switzer, II wrote: Rey, Okay, so it seems like you guys want the cool jQuery merchandise I showed you. Well, you can now buy it at the jQuery Cool Stuff store: http://www.cafepress.com/jquery That's right, the same cool mug and coaster that I showed you is ava

[jQuery] Re: code minimization / abstraction

2007-09-04 Thread Michael Geary
Your coding skills are fine, that's not the problem here. :-) The problem is that you can't do what you want in exactly the form you were aiming for: jQuery('#testhref').RemoteLink(options); When you call jQuery('#testhref'), the testhref element needs to exist. You can't hide the documen

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Dan G. Switzer, II
Rey, >Okay, so it seems like you guys want the cool jQuery merchandise I >showed you. Well, you can now buy it at the jQuery Cool Stuff store: > >http://www.cafepress.com/jquery > >That's right, the same cool mug and coaster that I showed you is >available for you guys to buy directly. A mousepa

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Dan G. Switzer, II
>Sounds a little steep, Glen. IMO, $25 would be an extremely cheap donation to also get a free mug...

[jQuery] Re: ajax 'error'

2007-09-04 Thread seedy
I figured it out thought I might as well post the answer for others. In .net 1.1 you can use the Response.StatusCode to set it to a bad status (500), and response.write to send text. This will cause jQuery to call the error callback, and from there you can use xhr.responseText to read any text

[jQuery] Form plugin not binding properly

2007-09-04 Thread juliandormon
Hi Mike, (I'm pretty sure you'll answer this) I am using your the form plugin to bind a form for ajax. It contains one or more upload fields. The form gets called into my page from an ajax call. The plug-in is then binded to form. At his point, the form is used for uploading image files. If the

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Pops
On Sep 4, 2:42 pm, Pops <[EMAIL PROTECTED]> wrote: > You can so do multiple selects, like find all divs and h3 > > $('div h3') > > but if you use the comma: > > $('div,h3') > > that says find the H3 tag that is within div, I think I knew I had that backwards! $('div h3') finds all h3

[jQuery] code minimization / abstraction

2007-09-04 Thread Joe
I'd love some js/jQuery expert help in code minimization / abstraction. html: Test Link js: jQuery(function() { jQuery('#testhref').click(function() { jQuery.ajax({ url: this.href, dataType: "script", beforeSend: function(xhr) {xhr.setRequestHeader("Accept", "text/ java

[jQuery] Re: Upgrade to 1.1.4 -- links die on IE6

2007-09-04 Thread EdMartin
So this turned out to have nothing to do with jQuery really. In the course of solving the problem for our web site, I switched from using pngfix_map.js (which only deals with images in the DOM and requires CSS-applied PNG background images to be dealt with separately in IE6-specific CSS files) to

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Andy Matthews
That's an excellent writeup, but I already knew all of that stuff. One issue though...$('#foobar') would only return the first occurrence of foobar because it uses getElementbyID which returns the first occurrence. That's desired behavior as there should only ever be one ID of a certain name per

[jQuery] jqModal .. where is this 'on open' thing

2007-09-04 Thread Joe
from the jqModal README: NOTE; To use custom ajax routines, utilize an "on open" callback function. If you need to process the ajax return, see the "onLoad" callback. I need to supply a fairly custom set of options to the ajax call, so just doing ajax: '/myurl' in jqm will not be enough.

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Jörn Zaefferer
Glen Lipka schrieb: I see no merchandise on that link. Try http://www.cafepress.com/jquery/ or just a refresh. -- Jörn

[jQuery] Re: where is Fisheye menu (not from interface)

2007-09-04 Thread polyrhythmic
Whoa I love jQuery! I just looked at the Magnifier source and that's the cleanest JS 'Fisheye' code I've ever seen. No wonder it renders so smooth. Keep up the good work guys! Charles On Sep 4, 1:35 am, Paul Bakaus <[EMAIL PROTECTED]> wrote: > There is a new magnifier component in jQuery > UI

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Pops
On Sep 4, 10:11 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Hrm... > > But that didn't work. So I'm wanting to learn HOW I can do this sort > of thing and a tutorial on these methods would help immensely. Have you tried the interactive Selector tester tool? http://www.woods.iki.fi/interac

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Klaus Hartl
Glen Lipka wrote: I see no merchandise on that link. Glen is blinded by the light ;-) --Klaus

[jQuery] Re: Live Query and tables problem

2007-09-04 Thread Jean
I´m trying to do the hover example of the site http://www.interalfa.com.br/kbs/pesquisa_teste.php i´m using dimensions e auto plugins On 9/4/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > Are there any other scripts included? Would you mind posting up the example? > > -- > Brandon Aaron > > >

[jQuery] Re: List of jQuery Resources

2007-09-04 Thread Richard D. Worth
jQuery Blogs: http://planet.jquery.com/ - Richard On 9/3/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Hi everyone, > > I've created a list of links that will hopefully help new jQuery users > find the resources they need to get up-to-speed with jQuery. If there's > anything I missed, please let

[jQuery] Re: planet.jquery.com

2007-09-04 Thread John Resig
It's back up, sorry about that. --John On 9/4/07, traunic <[EMAIL PROTECTED]> wrote: > > planet.jquery.com does not appear to be working. > > On Jul 12, 2:41 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > > I am pleased to announce the latest jquery.com service: > > > > http://planet.jquery

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Josh Nathanson
Weird, the first time I went I saw nothing, then I checked again and I see the merch now. Try refreshing Glen? -- Josh - Original Message - From: "Rey Bango" <[EMAIL PROTECTED]> To: "jQuery Discussion" Sent: Tuesday, September 04, 2007 10:49 AM Subject: [jQuery] jQuery Merchandise

[jQuery] Re: Live Query and tables problem

2007-09-04 Thread Brandon Aaron
Are there any other scripts included? Would you mind posting up the example? -- Brandon Aaron On 9/4/07, Jean <[EMAIL PROTECTED]> wrote: > > > Is a very simple example and dont works =/ > > $('tr').livequery('mouseover', function(){ $(this).addClass('hover');}); > > t has no properties > [Break

[jQuery] Re: $ in jQuery, Prototype and Mochikit

2007-09-04 Thread polyrhythmic
Jack, jQuery provides shortcuts but does not *require* them. NoConflict with other libraries has been a priority from the beginning, and all core code and proper plugins are written with this in mind. Please read the API documentation for noConflict to see how you NEVER have to use $ to use jQu

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
Not sure what to tell ya Glen. I'm see them in both IE & FF. Rey... Glen Lipka wrote: I see no merchandise on that link. Glen On 9/4/07, Rey Bango <[EMAIL PROTECTED]> wrote: Okay, so it seems like you guys want the cool jQuery merchandise I showed you. Well, you can now buy it at the jQuer

[jQuery] Live Query and tables problem

2007-09-04 Thread Jean
Is a very simple example and dont works =/ $('tr').livequery('mouseover', function(){ $(this).addClass('hover');}); t has no properties [Break on this error] t = t.className || t; jquery.js (line 349) and in $('tr').livequery('mouseout', function(){ $(this).removeClass('hover');}); elem.classN

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Glen Lipka
I see no merchandise on that link. Glen On 9/4/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Okay, so it seems like you guys want the cool jQuery merchandise I > showed you. Well, you can now buy it at the jQuery Cool Stuff store: > > http://www.cafepress.com/jquery > > That's right, the same co

[jQuery] Re: planet.jquery.com

2007-09-04 Thread traunic
planet.jquery.com does not appear to be working. On Jul 12, 2:41 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > I am pleased to announce the latest jquery.com service: > > http://planet.jquery.com/ > > What is planet? > Planet is a web feed aggregator. This will let you read all your favorit

[jQuery] jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Rey Bango
Okay, so it seems like you guys want the cool jQuery merchandise I showed you. Well, you can now buy it at the jQuery Cool Stuff store: http://www.cafepress.com/jquery That's right, the same cool mug and coaster that I showed you is available for you guys to buy directly. Every item listed

[jQuery] Re: Webmaster Remove false plugin from JQuery

2007-09-04 Thread Jörn Zaefferer
Mario Moura schrieb: Hi Folks I dont know if is fake but I tried find this guy in our forum and I cant find. I tried find something in the link provided and nothing about JQuery or even about plugin "Custom Borders" It is in http://docs.jquery.com/Plugins *Custom Borders

[jQuery] Re: Dojo combobox equivalent

2007-09-04 Thread Jörn Zaefferer
guyinva schrieb: Ok, I finally got around to modding Dan Switzer's Autocomplete to where is shows all possible options on initial focus and when the textbox is empty. I might dress it up and make it a new plugin (it works really well), but in the meantime, email me if you want it. I've only tes

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Rick Faircloth
Sounds a little steep, Glen. I do, however, think that developers of official plugs should be given a free mug and coaster. and don't worry, I wouldn't benefit from this arrangement, I'm nowhere near able to develop a plug-in. I have a hard enough time using them! Or perhaps a discounted

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: seedy [mailto:[EMAIL PROTECTED] > > Ive tried (and failed) a few times to make a graphic for a > jQuery mug with a > cheatsheet on it like this > http://www.cafepress.com/geekcheat.11507711 vi > mug . I can never fit it all on. > I would pay for that at

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread seedy
Ive tried (and failed) a few times to make a graphic for a jQuery mug with a cheatsheet on it like this http://www.cafepress.com/geekcheat.11507711 vi mug . I can never fit it all on. I would pay for that at a jQuery store for sure. Glen Lipka wrote: > > jQuery store might be a nice way to g

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Karl Swedberg
LOL. I had the same thought and IMed Rey about it. Turns out he had already brought it up with John. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 4, 2007, at 1:17 PM, Glen Lipka wrote: jQuery store might be a nice way to get donations. Donate $

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Glen Lipka
jQuery store might be a nice way to get donations. Donate $25 and get a mug. $50 and get a t-shirt. etc Like NPR. Glen On 9/4/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > /drool > > ~Sean > > > On 9/4/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > > > > Yep, I'm feeling pretty special right

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Rey Bango
hahahaha! I was wondering if anyone would mention that! seedy wrote: I love that the half life 2 'cheatsheet' is on the desk. Rey Bango-2 wrote: Yep, I'm feeling pretty special right about now with my new JQUERY MUG & COASTER SET!! wut!!! http://www.reybango.com/images/jquery/jquerym

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Rey Bango [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 04, 2007 1:06 PM > To: jQuery Discussion > Subject: [jQuery] Feeling pretty special right about now... > > > Yep, I'm feeling pretty special right about now with my new > > JQUERY MUG & COAS

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Sean Catchpole
/drool ~Sean On 9/4/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Yep, I'm feeling pretty special right about now with my new > > JQUERY MUG & COASTER SET!! wut!!! > > http://www.reybango.com/images/jquery/jquerymug8x6.jpg > > http://www.reybango.com/images/jquery/jquerycoaster8x6.jpg > > L

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread seedy
I love that the half life 2 'cheatsheet' is on the desk. Rey Bango-2 wrote: > > > Yep, I'm feeling pretty special right about now with my new > > JQUERY MUG & COASTER SET!! wut!!! > > http://www.reybango.com/images/jquery/jquerymug8x6.jpg > > http://www.reybango.com/images/jquery/jquer

[jQuery] ajax 'error'

2007-09-04 Thread seedy
So I have jQuery talking to some asp.net 1.1 pages through $.ajax. There are some situations on the server side(session timeout, access denied) where I would like to 'cause' an error. I could write 'error' to the html and check for it in the success: function, it would just make more sense to

[jQuery] Feeling pretty special right about now...

2007-09-04 Thread Rey Bango
Yep, I'm feeling pretty special right about now with my new JQUERY MUG & COASTER SET!! wut!!! http://www.reybango.com/images/jquery/jquerymug8x6.jpg http://www.reybango.com/images/jquery/jquerycoaster8x6.jpg Let the envy begin! ;) Rey...

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Andy Matthews
Well thanks for posting it. It definitely looks like it might be what I'm looking for. Cheers. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Priest, James (NIH/NIEHS) [C] Sent: Tuesday, September 04, 2007 9:46 AM To: jquery-en@googlegroups.co

[jQuery] Re: hyperlinks don't work with blockui in IE

2007-09-04 Thread Gordon
I did come up with a solution that appears to solve the problem, although it's not exactly elegant. Once the generated content is in the DOM I can do the following: if ($.browser.msie) $('.myDiv a.myLinks').click (function (){location.href = this.href}); On Sep 4, 3:35 pm, Gordon <[EMAIL PR

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Pops
Andy, I'm not selector expert (yet), but this worked for me: var $l = $('label').filter(function() { return $(this).html() != " "; }); --- HLS On Sep 4, 10:11 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Hrm... > > That didn't seem to work. Using this HTML: > > A > N >   > D > Y > > Wit

[jQuery] Re: bind an event to success validation

2007-09-04 Thread [EMAIL PROTECTED]
Hi Jose, You solved again my problem. I tried taht before but I made a stupid syntax mistake. Thanks Andrea On Sep 4, 4:45 am, SeViR <[EMAIL PROTECTED]> wrote: > Validation plugin has a submitHandler property so: > > $('.launch').validate({ > errorContainer:

[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
Actually it maybe should be as below, in case the function for the update-event ever changes :) .bind("reSort",function() { $this.trigger('update'); var sortList = config.sortList; $this.trigger('sorton', [sortList]); })

[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
I still didn't find a built-in easy way to do this so I added a new method to the tablesorter (around line 576 where all the other bindings are): .bind("reSort",function() { cache = buildCache(this); var sortList = config.sortList; $this.trigger('sorton', [sortList]);

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Andy Matthews [mailto:[EMAIL PROTECTED] > That's almost exactly what I'm looking for. Seems to drag a little bit > though...the hovers feel sluggish. Have you used this in > production before? Nope - you are on your own :) Looking through the API docs: ht

[jQuery] Re: $ in jQuery, Prototype and Mochikit

2007-09-04 Thread jack.tang
Hi Klaus I am not going to blame jQuery or some other javascript libs. They are all great! I just doubt whether providing shortcuts is good idea to an opensource project or not. In my experiences, using package is much better than the shortcuts. /Jack On Sep 4, 7:44 pm, Klaus Hartl <[EMAIL PROT

[jQuery] Re: Adding a delay between .each() function executions

2007-09-04 Thread Oliver Boermans
Champion Franck! Your code working beautifully in Safari/Mac. To my js console at least - I have a little work to put it all together. Regarding the Mac... Keep asking - if you don't the answer is always no!

[jQuery] Re: hyperlinks don't work with blockui in IE

2007-09-04 Thread Gordon
Thanks, but I couldn't get that to work, I can't get the dialog to position where I want it to go ot to take the correct size and the result just looks like a total mess. On Sep 4, 2:24 pm, Quayfee <[EMAIL PROTECTED]> wrote: > Hi Gordon, > > I don't know if it's of any use to you, but I hit a sim

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Andy Matthews
Sean... I've used one like that before, and I've actually used one very similar to that. In this case though I think it's important to actually show the calendar at all times. This helps the user visualize their date range and it's also a design element as well. A ndy -Original Message

[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
I've been trying to solve this too. I'm dynamically altering the table contents, and would like to force a refresh / update, but couldn't find a direct way to do that. Got to dig deeper I guess. -- Suni On 19 elo, 23:26, Chris <[EMAIL PROTECTED]> wrote: > I'm playing with adding a filtering widg

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Andy Matthews
James... That's almost exactly what I'm looking for. Seems to drag a little bit though...the hovers feel sluggish. Have you used this in production before? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Priest, James (NIH/NIEHS) [C] Se

[jQuery] Re: Adding a delay between .each() function executions

2007-09-04 Thread Franck Marcia
On 4 sep, 16:02, "Oliver Boermans" <[EMAIL PROTECTED]> wrote: > I'm getting a parse error: > I don't understand the js well enough to figure out why... It works fine for me (http://fmarcia.info/jquery/stack) with IE7, IE6, FF2, Opera 9 and Safari 3/Win. I don't know about Safari/Mac as nobody gi

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Sean O
Andy, It's not a jQuery plugin, but my all-time favorite calendar/datepicker control is the "Lotus Notes Web Datepicker" from NSFTools: http://www.nsftools.com/tips/NotesTips.htm#datepicker (don't be fooled by the name, it's a straightforward JS/DHTML picker and doesn't use/need Notes) Demo: ht

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Andy Matthews [mailto:[EMAIL PROTECTED] > > I'm updating this post with an image of what it is I'm looking for: > > http://www.commadelimited.com/uploads/datepicker.gif > Andy http://marcgrabanski.com/code/jquery-calendar/ Click the 'inline' menu ite

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Andy Matthews
Hrm... That didn't seem to work. Using this HTML: A N   D Y With this jQuery, I got alerts on each label: $('label').not(":contains(' ')").each(function(){ var html = $(this).html(); alert(html); }); _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: Adding a delay between .each() function executions

2007-09-04 Thread Oliver Boermans
Damn you cut and paste! Funny white space characters to blame :/ > I don't understand the js well enough to figure out why... >

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-09-04 Thread Andy Matthews
I'm updating this post with an image of what it is I'm looking for: http://www.commadelimited.com/uploads/datepicker.gif It doesn't HAVE to have the select boxes at the top, but those would be nice. The main thing is that I need to be able to have two calendars which act independantly of each ot

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Andy Matthews
A... I wondered if there was a way to invert the contains() method. I have to say that's not all that intuitive...especially since you've got the contains() in quotes inside the not(). Thank you though for posting that. Hopefully that'll spur some really good experimentation. On Sep 4, 8:36

[jQuery] Re: blockUI IE6 checkbox

2007-09-04 Thread seedy
Has anyone been able to reproduce this or am I just crazy ? seedy wrote: > > I have a few checkboxes that fire an ajax request, and use blockUI to > block an element during this request. > Problem is, the checkbox gets 'unchecked' whenever blockUI shows up. > Its reproducible with the follo

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Sean Catchpole
I'll try to pull out the time later to write a more thorough response, but for now this is how you would code than line your pasted: $("label").not(":contains(' ')") ~Sean On 9/4/07, Andy Matthews <[EMAIL PROTECTED]> wrote: > > > Anyone have any input on this? Surely someone has written a tute

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Andy Matthews
Anyone have any input on this? Surely someone has written a tute on these semi-confusing methods. -- I've seen some of you jQuery masters bust out with these amazing chains, but I can't quite grasp how some of them are crafted. I

[jQuery] Re: hyperlinks don't work with blockui in IE

2007-09-04 Thread Quayfee
Hi Gordon, I don't know if it's of any use to you, but I hit a similar issue creating blockUI popups with external files as thier source. I ended up with a solution that sounds simliar to what you're doing, I create the div at the end of the page [$('body').append('')], then populate it (in my c

[jQuery] get absolute xpath of an element

2007-09-04 Thread julio
Hi, is it possible with jquery get absolute xpath of an element "catched" on 'click' event? $(frameDocument).bind('click', function(event) { var element = $wnd.$(event.target); element.css ( 'border', '3px solid rgb(100, 22, 100)' );

[jQuery] Re: Strip a href links from a div

2007-09-04 Thread Richard D. Worth
On 9/4/07, David Duymelinck <[EMAIL PROTECTED]> wrote: > > > But i have a question for Richard. Why would you want to add a span if > the link is not important in the second example? > > $('#divid a').each(function() { > $(this).before($(this).text()).remove(); > }); > Yeah, that's good. - Rich

[jQuery] Webmaster Remove false plugin from JQuery

2007-09-04 Thread Mario Moura
Hi Folks I dont know if is fake but I tried find this guy in our forum and I cant find. I tried find something in the link provided and nothing about JQuery or even about plugin "Custom Borders" It is in http://docs.jquery.com/Plugins *Custom Borders

[jQuery] Re: $ in jQuery, Prototype and Mochikit

2007-09-04 Thread John Resig
> Bind-early-and-execute-later is nightmare of these $s. jQuery completely works around this. Just put your function definition inside of a closure. So you should put it inside: jQuery(document).ready(function($){ function myfunc(){ $("div").bind(...); } }); or like so: (function($){ $

[jQuery] Re: editable accessing clicked element for extraParam

2007-09-04 Thread Adrian Lynch
I came up with a clunky work around involving changing the editable code which wasn't ideal. Talking to Dylan, he suggested doing the following which works like a charm. $(".editable").each(function(i) { $(this).editable("page-update.cfm?action=updatePageName", { paramNam

[jQuery] Re: Strip a href links from a div

2007-09-04 Thread adel
On 9/4/07, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > > i'm curious: is this $('#divid a').removeAttr('href'); the way to > "strip tags" ? > > Like "i love http://www.domain.com";>my website and you > should too." would become: > > "i love my website and you should too." "i love my we

[jQuery] Start effect after another effect is complete / Start effect after image is loaded? - wafflgallery.js

2007-09-04 Thread alan
Hello, I posted earlier about a gallery for portfolio purposes. After being unable to find anything particularly suitable, I wanted to write my own but am having a few issues. I hope to release this gallery as a well documented and easy to use plugin for people with similar needs (very customizab

[jQuery] editable bug?

2007-09-04 Thread Adrian Lynch
I'm seeing the onBlur get called when you've finished editing an element by pressing enter and I click on another window. Can anyone confirm this behaviour in Firefox 2 on Windows (Vista if that matters)... JS $(document).ready(function() { $(".editable").editable("page-update.cfm?act

[jQuery] Re: Strip a href links from a div

2007-09-04 Thread David Duymelinck
$('#divid a').removeAttr('href'); would only remove the attribute so you would end up with "i love my website and you should too." If i'm not mistaken. But i have a question for Richard. Why would you want to add a span if the link is not important in the second example? $('#divid a').eac

  1   2   >