Re: [jQuery] Release: jQueryHelp - code reference application

2007-02-23 Thread Wil Stuckey
That's pretty sweet. Now who's going to build the quicksilver plugin? :) -w ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Finished: jQuery code assist in Aptana

2006-12-14 Thread Wil Stuckey
ahh thank you! i've been wanting this. On 12/14/06, Edwin Martin [EMAIL PROTECTED] wrote: Klaus Hartl schreef: Edwin Martin schrieb: I created the scriptdoc-file needed for code assist in Aptana. You can download it here: http://www.bitstorm.org/edwin/jquery/ Thanks Edwin! Great job!

Re: [jQuery] Form Validation (no Ajax)

2006-11-13 Thread Wil Stuckey
I'm not totally sure how the event system works, but couldn't you attach another function to the forms submit event? like this:$('#form').validate().submit(function(){ // do stuff});This is just a shot in the dark, I don't really know that much about the inner workings of _javascript_ events.

Re: [jQuery] Accordion plugin

2006-11-09 Thread Wil Stuckey
On 11/8/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi jQueryians,just improved and commited the jQuery accordion plugin, or rather Accordion widget. Whatever you like to call it, it's quite neat and very flexible.Very cool Jörn, I really like how flexible it is.-Wil

Re: [jQuery] selectbox plugin - take 2

2006-11-09 Thread Wil Stuckey
On 11/9/06, Christian Bach [EMAIL PROTECTED] wrote: Erik Beeson wrote: Changing with the arrow keys is nice, but it seems like it should select when you hit Enter, and revert to the last selection when you hit ESC.It's now on the list of stuff to implement. Perhaps accessibility expert Klaus,

Re: [jQuery] New jQuery Plugin - Star Rating

2006-11-08 Thread Wil Stuckey
On 11/8/06, Alex Cook [EMAIL PROTECTED] wrote: Doesn't work for me in FF2 WinXPInteresting are you getting a error message in the _javascript_ console? I've tested FF 1.5 2.0 IE 6 7 WinXP-Wil ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] New jQuery Plugin - Star Rating

2006-11-08 Thread Wil Stuckey
On 11/8/06, Andy Matthews [EMAIL PROTECTED] wrote: Rockin! On 11/8/06, Andy Matthews [EMAIL PROTECTED] wrote: 1) When I mouse over a star, I always get a brief flicker (andthe hourglass cursor appears briely as well). Hmmm, that might be related to the IE 6

[jQuery] New jQuery Plugin - Star Rating

2006-11-07 Thread Wil Stuckey
elements)Thank you,Wil Stuckey ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Accordion Requirements

2006-11-07 Thread Wil Stuckey
On 11/8/06, Paul McLanahan [EMAIL PROTECTED] wrote: One of the requirement I had for an accordion implementation was thatit toggle an image in the title tag when it's content was shown orhidden. So I put this into the function for showing an item.jQuery('img',thisDT).each(function(){ this.src =

Re: [jQuery] Star Rating Plugin?

2006-11-04 Thread Wil Stuckey
On 11/4/06, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: something like:$(a.starRating).each(function(){var $this = $(this);var href = "" ;var stars = $this.text();$this.empty();for (var i = 0; i stars.length; i++){$this.append(span class = ' + (i+1) + ' + stars.substr(i,1) +

Re: [jQuery] 1.0 to 1.0.3 upgrade issues

2006-11-02 Thread Wil Stuckey
On 11/2/06, Klaus Hartl [EMAIL PROTECTED] wrote: Dave Methvin schrieb: // error: f.apply is not a function - jquery.js (line 1166) $(function(){$(document.createElement('embed')); }); Looks like a Firefox bug, I don't understand why it's still unfixed after so long:

Re: [jQuery] 1.0 to 1.0.3 upgrade issues

2006-11-02 Thread Wil Stuckey
Wait ... Rev 522 might have fixed this. Anyone care to test. Testing on 522 yields the same error.FF2.0 Firebug jQuery(document.createElement('object')) f.apply is not a function-Wil ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] 1.0 to 1.0.3 upgrade issues

2006-11-02 Thread Wil Stuckey
On 11/2/06, Brandon Aaron [EMAIL PROTECTED] wrote: Could you please test that same thing here:http://brandon.jquery.com/testing/safari_node_lists/index.html $(document.createElement('object'))[ [object HTMLObjectElement]]oh yeah it worked! ___ jQuery

Re: [jQuery] Access to flash object

2006-11-01 Thread Wil Stuckey
On 10/31/06, Sam Sherlock [EMAIL PROTECTED] wrote: UFO Version 3.30 is coming soon sneek peak at http://www.refunk.com/ufo/ufo.jsI'm actually working on a jQuery port of UFO 3.xI've got a working port of UFO 2.0 sans a few features that we did not need here. I would be willing to post it if

Re: [jQuery] Improved Event system new Accordion

2006-10-27 Thread Wil Stuckey
On 10/26/06, Benjamin Sterling [EMAIL PROTECTED] wrote: Can you supply an example on how you would implement this?Sure, I was working on a demo page but here is a quick example of how this would be put together.The HTML can be any pairing you want dt and dd; h2 and ul; h2 and div.

Re: [jQuery] Improved Event system new Accordion

2006-10-26 Thread Wil Stuckey
I wrote an accordion plugin as well... I also wanted something that was structurally flexible.I recently re-factored what i had, so this is not that well tested or optimized. Here it is anyway:/*** Utility function to swap className on a jQuery object. * * @example $('p.foo').swapClass('foo',

Re: [jQuery] ScrollTo Functionality

2006-10-06 Thread Wil Stuckey
I've implemented a technique similar to this. here is the code i used:$.fn.scrollInterface = function(s) { var $handles = $('a', this).add('a.top'), s = s || 300; $handles.click(function(){ this._href = (!this._href) ? # + this.href.split('#')[1] : this._href; $(this._href).ScrollTo(s); return

Re: [jQuery] search for id with '/' character

2006-10-06 Thread Wil Stuckey
couldn't you just do:$('#foo/bar').val();?-wilOn 10/6/06, Matt Grimm [EMAIL PROTECTED] wrote: Your problem is that you prefixed the input selector with #. Thisworks: $('[EMAIL PROTECTED]/bar]').val();On Fri, 2006-10-06 at 15:00 -0400, [EMAIL PROTECTED] wrote: Hi, if I have a form like form input

Re: [jQuery] Fisheye

2006-09-29 Thread Wil Stuckey
wow excellent Stefan. this is why i love jquery.--Wil ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Microformats Bookmarklet

2006-09-28 Thread Wil Stuckey
I just saw this neat little bookmarklet that highlights all hCard and hCal Microformats on a page. The awesome part is it uses jQuery!http://leftlogic.com/info/articles/microformats_bookmarklet --Wil ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Quick Selector Question

2006-09-08 Thread Wil Stuckey
On 8/31/06, John Resig [EMAIL PROTECTED] wrote: Not /yet/ - however I do have the following function planned:$(dt).nextUntil(dt)Which will select all the follow elements until it hits one thatmatches the _expression_ - which is just what you want. It may be a little bit before I get it into the

[jQuery] swapClass

2006-09-07 Thread Wil Stuckey
I'm not sure how helpful this will be to anybody, but i thought i would post it to the list anyway.jQuery.fn.swapClass = function(c1, c2){ return this.each(function(){ var t = $(this); ( t.is('.'+c1)) ?t.addClass(c2).removeClass(c1) : t.addClass(c1).removeClass(c2); });}I've found this to be

Re: [jQuery] swapClass

2006-09-07 Thread Wil Stuckey
On 9/7/06, Karl Swedberg [EMAIL PROTECTED] wrote: On Sep 7, 2006, at 1:56 PM, Wil Stuckey wrote:I may be mistaken, but I think this functionality is already built into jquery.js, called toggleClass: Karl, Im pretty sure toggleClass simply adds and removes a single class name. What i needed

Re: [jQuery] version variable?

2006-08-30 Thread Wil Stuckey
On 8/29/06, Kenzie Campbell [EMAIL PROTECTED] wrote: Is there a jquery variable for the currently loaded version of jquery?You can use:$().jquery-wil ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/