Re: [jQuery] winding - my first experiment

2007-03-26 Thread Sean O
mmm... very WinLike... like :) http://www.winlike.net/ And potentially nicer! (especially w/jQuery hooks) _ SEAN O http://www.sean-o.com Roman Borisoglebskyi wrote: http://flymio.ru/object/ This is my first experiment with jQuery framework. It is based on many plugins now

Re: [jQuery] Playing a beep with jQuery

2007-03-23 Thread Sean O
, the CSS that seemed to work in Firefox did not go so well in IE and vice versa (naturally), so you may have to do a little twiddling. I'm working on a sound effects option for the next version of the jMP3 plugin... SEAN O http://www.sean-o.com SRobertJames wrote: Anyway to use jQuery

Re: [jQuery] Creating a visible link to show and unhide content.

2007-03-14 Thread Sean O
(){ $(this).html('(show me)').next('.spoiler').addClass('hide'); }); }); Just set a .hide {display:none} rule in your CSS. Good Luck, SEAN O [-Stash-] wrote: pI'm currently trying to create a spoiler hiding addon for a forum using jQuery. I basically want

Re: [jQuery] Good datepicker

2007-03-09 Thread Sean O
tried many, searching for the right one. It's fast, quite configurable, styled by CSS, works well in IE FF etc. etc. Good Luck, SEAN O http://www.sean-o.com Rey Bango-2 wrote: Hey guys, I'm looking for a good JS-based date picker. I wanted to use the one in the plugins folder

Re: [jQuery] Swap image onClick

2007-03-09 Thread Sean O
Katya, I think the Xpander plugin: http://labs.activespotlight.net/jQuery/Xpander.html is right up your alley. SEAN O http://www.sean-o.com Katya Ushakova wrote: Hello, all I am a newbie, and just found jquery.com while looking for a suitable collapsible menu script

Re: [jQuery] generate folder name

2007-03-08 Thread Sean O
Alexandre, You should be able to simply test the folder name string against a regular expression. More info: http://www.regular-expressions.info/javascript.html http://www.websina.com/bugzero/kb/regexp.html HTH, SEAN O http://www.sean-o.com Alexandre Plennevaux wrote: hello

Re: [jQuery] Bind event to radio button group

2007-03-02 Thread Sean O
Brad, Looks like you need to use the .each function to iterate through each radio button. Here's some demo code: http://www.bennadel.com/blog/534-The-Beauty-Of-The-jQuery-Each-Method.htm Docs: http://jquery.bassistance.de/api-browser/#eachFunction SEAN O http://www.sean-o.com

Re: [jQuery] Bind event to radio button group

2007-03-02 Thread Sean O
that Josh just posted works too, if you don't need an index. BTW, welcome to jQuery. SEAN O http://www.sean-o.com Sean O wrote: Brad, Looks like you need to use the .each function to iterate through each radio button. Here's some demo code: http://www.bennadel.com/blog

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Sean O
: this is just one PC I've noticed this on... ___ SEAN O Klaus Hartl wrote: Please note that I haven't tested in other browsers than Firefox yet. I just thought I'd like to request some feedback/code review first! -- Klaus -- View this message in context: http://www.nabble.com

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Sean O
a very old ASP intranet app, so I'd like to keep apprised of any resolution. SEAN O Brice Burgess wrote: I've finally got around to using the tabs plugin am loving it! :) In due time, I of course came across a complexity that I'm having a hard time elegantly solving. 4 tabs

Re: [jQuery] Docs Wigdet

2007-02-25 Thread Sean O
inline (using a keyboard shortcut) with any IDE -- it's faster than cut-n-pasting-n-entering... :) Runs in the system tray as a small (~200k) app. SEAN O rolfsf wrote: Want! -- View this message in context: http://www.nabble.com/Docs-Wigdet-tf3154757.html#a9153936 Sent from

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

2007-02-23 Thread Sean O
As long as the jQuery API Browser is updated to reflect the current version of jQuery, and if the URL parameters are the same, then yes :) If they do change, I'll update the program and post a new version. SEAN O Andy Matthews-4 wrote: Will this automatically load in updates when

[jQuery] Release: jQueryHelp - code reference application

2007-02-22 Thread Sean O
help in your jQuery projects... SEAN O -- View this message in context: http://www.nabble.com/Release%3A-jQueryHelp---code-reference-application-tf3273256.html#a9101528 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery

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

2007-02-22 Thread Sean O
John, Thanks for the kind words. Attaboys right back at you for the collaboration w/Jack Ext. I hope you can better jQuerize those lovely-to-use, but byzantine-to-code Ext libraries! SEAN O John Resig wrote: Very nice! Great job Sean! --John On 2/22/07, Sean O [EMAIL

Re: [jQuery] Taconite Plugin - New and Improved!

2007-02-07 Thread Sean O
Mike, Great work on the plugin. Looking forward to testing it out -- looks like it could come in quite handy on some single page web apps I'm developing for my company. Looks like you spent a lot of time effort on this... it is appreciated. ___ SEAN O malsup wrote: I've just

Re: [jQuery] Dylan Verheul's Autocomplete Mod...

2007-02-01 Thread Sean O
now tried about 57 different combinations of settings, and I can't get it to work like your demo (keep typing and the selections limit themselves). To that end, do you have any documentation that might help? Thanks, SEAN O Dan G. Switzer, II wrote: Sean, Dan, this looks great. I

[jQuery] Firebug 1.0 released

2007-01-26 Thread Sean O
Just a heads up: the awesome debugger Firebug has come out of beta and is now '1.0'. http://www.getfirebug.com/ I find new features of this every day I use it. SEAN O -- View this message in context: http://www.nabble.com/Firebug-1.0-released-tf3124724.html#a8657369 Sent from

Re: [jQuery] Problems with autocomplete

2007-01-24 Thread Sean O
to be happening in FF2 IE6 - PC. SEAN O Notesake wrote: I am using autocomplete on the page http://www.notesake.com/beta/register.php in the schools textbox. It works mostly byt when you type in Southern Conn it does not popup anything - not even a No Matches. But then when you go

[jQuery] how to tell if checkbox is checked and manipulate

2007-01-24 Thread Sean O
): if ( $(.checklist).is(:checked) ) { ($(this)[0].checked) ? ($(this).parent().css(background,lightgreen)) : ($(this).parent().css(background,none)); } Advice? Thanks, SEAN O -- View this message in context: http://www.nabble.com/how-to-tell-if-checkbox

Re: [jQuery] how to tell if checkbox is checked and manipulate

2007-01-24 Thread Sean O
is not changed. Plus, the alert only fires once, so I take that to mean only one 'hit' was found (in my test, 3 of the 8 boxes with checklist class were checked). I need to have the CSS modify every checked checkbox with a class of checklist. ___ SEAN O j. siefer wrote: :checked should work

Re: [jQuery] Dylan Verheul's Autocomplete Mod...

2007-01-16 Thread Sean O
with matchSubset or matchContains... Thanks, ___ SEAN O Dan G. Switzer, II wrote: I needed some modifications to the autocomplete library that Dylan Verheul released, and I wanted to share the modded library: http://www.pengoworks.com/workshop/jquery/autocomplete.htm Here are some

Re: [jQuery] jquery selecting one row on link click

2007-01-08 Thread Sean O
Carlos, Try this: $(a).click(function() { $(tr).removeClass(highlight); // removes highlight class from all TRs $(this).parents(tr).addClass(highlight); // adds it to selected }); SEAN O CARLOS BOTERO wrote: Im trying to highlight the parent row

[jQuery] Any way to trigger a click by script?

2007-01-05 Thread Sean O
[] href=myimg.jpg id=imglinkgt;My Imagelt;/agt; The background changes (for testing), but the click event is not triggered. Tips? Thanks, SEAN O -- View this message in context: http://www.nabble.com/Any-way-to-trigger-a-click-by-script--tf2926200.html#a8180306 Sent from the JQuery mailing

Re: [jQuery] Any way to trigger a click by script?

2007-01-05 Thread Sean O
] : null : this.attr(n, h);}. Jonathan Sharp wrote: Reference this post: http://www.nabble.com/%24%28%27a%27%29-0-.click%28%29-not-working--tf2896856.html#a8092696 Cheers, -Jonathan On 1/5/07, Sean O [EMAIL PROTECTED] wrote: Hi, I'm trying to simulate a click of a link on my page

Re: [jQuery] jQuery powered shopping site

2006-12-20 Thread Sean O
on Win XP) SEAN O Michael Price-10 wrote: Hiya folks, Thought I'd take a few minutes to ask for feedback on my jQuery powered Amazon API-based website, http://www.cyberscoreshop.co.uk/ It uses jQ itself for some AJAX stuff to add products to the shopcart in the background, my

[jQuery] How to make radio button selected?

2006-12-14 Thread Sean O
red (id=check_red) O blue (id=check_blue) (id=textbox) [red] - select red radio button on blur Tips? Thanks, SEAN O -- View this message in context: http://www.nabble.com/How-to-make-radio-button-selected--tf2821791.html#a7875982 Sent from the JQuery mailing list archive at Nabble.com

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Sean O
? And developer community got a measly 2 stars. They obviously don't know about this list, and didn't bother to look. Perhaps the forthcoming (?) forums will help exposure. At least the Nabble interface gets some jquery-ish keywords out there... SEAN O Rey Bango-2 wrote: Guys, some of you may

Re: [jQuery] Text pointer to hand pointer on MouseOver...

2006-11-13 Thread Sean O
That's right. cursor: hand; cursor: pointer; should work. SEAN O Laurent Yaish-2 wrote: try setting the CSS cursor property http://www.w3schools.com/css/pr_class_cursor.asp Laurent On 11/13/06, Rick Faircloth [EMAIL PROTECTED] wrote: How could I cause the mouse

Re: [jQuery] Scrolling to the bottom of a page

2006-11-05 Thread Sean O
Interface's ScrollTo should work nicely (and aesthetically) for that: http://interface.eyecon.ro/demos/ifxscrollto.html http://interface.eyecon.ro/ SEAN O sd-11 wrote: Hi, how to scroll always to the bottom of a page with jquery? Thank you

Re: [jQuery] New Plugin: Xpander

2006-10-28 Thread Sean O
. The expanding/collapsing works, but nothing is displayed in the content area. What happens when you do a simple show/hide blindup/blinddown routine? SEAN O Dan Atkinson wrote: Hey there. I'm trying this out on a fresh Wordpress install (http://www.guerillaweb.net/home/) but I'm

Re: [jQuery] url and uri

2006-10-24 Thread Sean O
Check this recent thread for more info on this: http://www.nabble.com/method-plugin-for-getting-query-string-vars--tf2481232.html#a6939213 ___ SEAN O code enquest wrote: Can somebody explain me how to read url's uri whit jquery... I want to change thing when ?id=1 etc with jquery

Re: [jQuery] expand one - collapse the others

2006-10-23 Thread Sean O
follows the question, as per your example. This uses the jQuery hide() and show() methods; you could add/remove hide/show CSS classes as well. SEAN O badtant wrote: sounds goog but i can't get it to work... i can only get toggle all answers to work. i want to be able to toggle each

Re: [jQuery] nice plugin idea - Splitter

2006-10-19 Thread Sean O
in the YUI toolkit so far. Seems very professional, effects work as advertised, cross-browser, smooth as silk... Too bad it seems a bit too advanced for me at this stage -- lots of hardcore javascript. I'm still trying to wrap my head around many things jQuery... :) ___ SEAN O Mark Gibson-8

Re: [jQuery] Variable from PHP to Jquery

2006-10-15 Thread Sean O
Olaf, How about: var layer = '?= $layer ?'; ___ SEAN O Olaf wrote: Hi at all, i works not so long with JS. I will a var to gif in Jquery, the Snippet: script type=text/javascript var layer = '2'; $(document).ready(function(){ $('#menu-layer0').tabs({on: (layer

Re: [jQuery] Ajax to update multiple fields

2006-10-13 Thread Sean O
Hi Scott, Here's a suggestion: // autofill customer information from email $(#email).blur(function(){ var emailaddr = $(#email).val(); // AJAX send to email lookup, which outputs XML data

Re: [jQuery] Ajax to update multiple fields

2006-10-13 Thread Sean O
Scott, Glad to hear it! SEAN O Scott Sharkey wrote: Hello Klaus, Aaron, and Sean, I got it working, though I am not at all clear what the problem was. I suspect the mismatch on the encoding types, but I'm not sure. Thanks for the help -- I appreciate it. -Scott

[jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
Hi, I've created a new jQuery plugin, jMP3, to easily make MP3s playable directly on most any web site. Information, demos and code: http://www.sean-o.com/jquery/jmp3/ Let me know what you think. It's my first plugin, so be gentle! SEAN O -- View this message in context: http

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
that claim to get around this, but I'd rather not have to include another script. ___ SEAN O Andy Matthews wrote: Very nice. Good looking as well. A comment. - I know that this is probably a user thing, but you need to implement the IE Flash fix on your examples. You might even consider

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
Kurt, That worked a treat, thanks. .html() is what I had tried before. I've updated the plugin to v0.2.1 (bugfix) based on yours Sam's suggestions. http://www.sean-o.com/jquery/jmp3/ ___ SEAN O Kurt Mackey wrote: Oh wait, no, that won't work. You'd need: if(jQuery.browser.msie

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
up more on that for my next plugin ;) Thanks, SEAN O -- View this message in context: http://www.nabble.com/New-Plugin%3A-jMP3-tf2416968.html#a6742878 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
. ___ SEAN O wycats wrote: Can I see the FLA file? -- Yehuda -- View this message in context: http://www.nabble.com/New-Plugin%3A-jMP3-tf2416968.html#a6743801 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing

Re: [jQuery] Appending option to select

2006-10-10 Thread Sean O
= 0; i routes.length; ++i) { options += ' option value=' + routes[i] + '' + routes[i] + '/option\r\n'; } options += /select; $(#routeselect).html(options); However, it bombs (empty select) in both IE6 and O9... SEAN O Galen Palmer wrote