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 &

Re: [jQuery] Playing a beep with jQuery

2007-03-23 Thread Sean O
n, etc.) by CSS. However, 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

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

2007-03-14 Thread Sean O
r').removeClass('hide'); },function(){ $(this).html('(show me)').next('.spoiler').addClass('hide'); }); }); Just set a .hide {display:none} rule in your CSS. Good Luck, SEAN O [-Stash-] wrote: > > I'

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 > collapsi

Re: [jQuery] Good datepicker

2007-03-09 Thread Sean O
ve this control, and I've 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

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

Re: [jQuery] Bind event to radio button group

2007-03-02 Thread Sean O
t( "You Clicked Index #: " + i ); } ); } ); The code 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 thr

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-

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

2007-02-26 Thread Sean O
oon as I redo 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

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Sean O
Note: 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 >

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

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

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 > &

[jQuery] Release: jQueryHelp - code reference application

2007-02-22 Thread Sean O
exe) Hope this can be of some 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.

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 wr

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

2007-02-01 Thread Sean O
. I think I've 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: >

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

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

2007-01-24 Thread Sean O
Ah ha! The .filter was it... Just tweaked it to change the BG of the parent TD: $(".checklist").filter(":checked").parent().css("background","lightgreen"); and it works. Thanks Wizz! ___ SEAN O Wizzud wrote: > > Try this ... > $

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

2007-01-24 Thread Sean O
round","lightgreen"); } But the background 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 checkbo

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

2007-01-24 Thread Sean O
it's pulled vals from the db). This doesn't do anything (nor does it produce a Firebug error): if ( $(".checklist").is(":checked") ) { ($(this)[0].checked) ? ($(this).parent().css("background","lightgreen")) : ($(this).parent().

Re: [jQuery] Problems with autocomplete

2007-01-24 Thread Sean O
Seems 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 > eve

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

2007-01-16 Thread Sean O
#x27;t had much luck 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/jquer

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 CA

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

2007-01-05 Thread Sean O
le.com Link to google click() and this.click() don't work... SEAN O Jonathan Sharp wrote: > > Hey Sean, > > The problem you're experiencing is that you can't trigger (no browser > support) the default link action via javascript. .click() will tri

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

2007-01-05 Thread Sean O
gth ? this[0][n] : 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]> wr

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

2007-01-05 Thread Sean O
Hey Chris, Tried replacing $(function() { with $(document).ready(function(){, but both have same effect (no clicky). It's that user mouse-clicking (or any other way to simulate the activation of that <a> tag) that I'm after. SEAN O Christopher Jordan-2 wrote: >

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

2007-01-05 Thread Sean O
); }); <a rel="gb_image[]" href="myimg.jpg" id="imglink">My Image</a> 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/

Re: [jQuery] jQuery powered shopping site

2006-12-20 Thread Sean O
actual cart. (using FF 2.0 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

Re: [jQuery] How to make radio button selected?

2006-12-14 Thread Sean O
Thanks, Mike. Knew it was something simple. It was the [0] that did it, I had tried simply .checked = true; SEAN O malsup wrote: > > $('#check_red')[0].checked = true; > > > On 12/14/06, Sean O <[EMAIL PROTECTED]> wrote: >> >> Hi, &

[jQuery] How to make radio button selected?

2006-12-14 Thread Sean O
t. e.g. 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 li

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Sean O
page? 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: &g

Re: [jQuery] fadein/fadeout flicker in ie6

2006-11-30 Thread Sean O
This looks like the classic ClearType/IE6 problem. Try setting the background color of your text DIVs to white. This should resolve your issue. SEAN O bmsterling wrote: > > Hey all, > > I am putting together this site http://ierev.informationexperts

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 P

Re: [jQuery] Media plugins

2006-11-09 Thread Sean O
Mike, Nice job. Don't know why I didn't think of putting the source file in the href to make it unobtrusive, Doh! I like the clever use of classes for options, and the regex too (still trying to wrap my brain around that). _______ SEAN O malsup wrote: > > I

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 jq

Re: [jQuery] Star Rating Plugin?

2006-11-03 Thread Sean O
Looking for something to rate the JQuery Button submissions, Rey? ;) ___ SEAN O Rey Bango-2 wrote: > > > Has a star rating plugin like this: > > http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/ > > bee

Re: [jQuery] New Plugin: Xpander

2006-10-28 Thread Sean O
get the same "unknown runtime error" on page load. 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 tr

[jQuery] xml / javascript help requested

2006-10-27 Thread Sean O
t an example of what i need }); Tried googling and scanning the docs, couldn't find anything. Can someone point me in the right direction? Thanks. SEAN O -- View this message in context: http://www.nabble.com/xml---javascript-h

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 e

Re: [jQuery] expand one - collapse the others

2006-10-23 Thread Sean O
e answer immediately 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 >

Re: [jQuery] Tabs plugin 2.0

2006-10-20 Thread Sean O
tomatically* to the size of the current tab's content. This can be confusing. It should also be CamelCase for consistency... "fxTallestHeight" perhaps? SEAN O Klaus Hartl wrote: > > Hi jQuerians, > > I worked on the tabs plugin, did some clean up and ch

Re: [jQuery] nice plugin idea - Splitter

2006-10-19 Thread Sean O
rything I've seen 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... :) _

Re: [jQuery] Variable from PHP to Jquery

2006-10-15 Thread Sean O
Olaf, How about: var 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: > > > var layer = '2'; > $(document).ready(function(){ > $('#menu-layer0').tabs({on

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 t

Re: [jQuery] Ajax to update multiple fields

2006-10-13 Thread Sean O
aps a soft, brief harp sound -- player hidden, and set to autoplay on completion. ;) SEAN O Scott Sharkey wrote: > > Sean, > > That is an awesome answer - THANKS. I've been having trouble getting my > head around the way that AJAX works in jQuery, and this is t

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] Appending to

2006-10-10 Thread Sean O
wo"; var options=""; for(i = 0; i < routes.length; ++i) { options += ' ' + routes[i] + '\r\n'; } options += ""; $("#routeselect").html(options); However, it bombs (empty ) in both IE6 and O9..

Re: [jQuery] How to disable a form fields in jQuery

2006-10-10 Thread Sean O
Klaus Hartl wrote: > > Sean O schrieb: >> Eriksen, >> >> Try: >> $("textarea.news01").attr("disabled", "disabled"); >> >> If you need to re-enable it later: >> $("textarea.news01").removeAttr("dis

Re: [jQuery] How to disable a form fields in jQuery

2006-10-10 Thread Sean O
Eriksen, Try: $("textarea.news01").attr("disabled", "disabled"); If you need to re-enable it later: $("textarea.news01").removeAttr("disabled"); ___ SEAN O Eriksen Costa wrote: > > Hello people, > > I was searching for a

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

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
sive != Doesn't Work haha. I'm not sure I get what you're saying about the object element/code... I just did a quickie concatenation, which I knew was not optimal. I'll read up more on that for my next plugin ;) Thanks,

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 w

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Sean O
.js files 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 f

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