[jQuery] Re: datePicker v2 beta

2007-06-04 Thread Rob Desbois
in one file since I always use the icon. Hope this helps! Chris. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: Find set of questions

2007-06-04 Thread Rob Desbois
$('ol.ol1 li'), but only those that contain at a deepter level of the DOM, another li.correctchosen Something like: $('ol.ol1 li').filter('go inside the li, looking for li.correctchosen') Sam -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's

[jQuery] Re: Multiple Selects

2007-06-04 Thread Rob Desbois
is activated a jquery plugin convert it into a more usable/visual widget form. What do you think? -- Enrique Meléndez Estrada (2367) Servicios Informáticos Organización y Servicios Internos Instituto Tecnológico de Aragón -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987

[jQuery] Re: Attribute Namespace ? How

2007-06-01 Thread Rob Desbois
this... input type=checkbox name=drink COOP:maxchecked=3 value=Joy / Does anyone know the magic key to doing this with jQuery? -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Rob Desbois
as because the hover effect worked correctly in IE. However, hovering doesn't work in v2 because of IE's quirkiness. Anybody have any input on how to get the :hover effect back in IE with v2? -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Rob Desbois
the line d = new Date(d); to the start of dpSetSelected(). --rob On 6/1/07, Rob Desbois [EMAIL PROTECTED] wrote: Well, I've finally taken the plunge and started playing with datePicker. Can I join everyone in thanking you for this excellent plugin. Suggestions for a few changes, mainly ones

[jQuery] Re: Quick javascript question (not jQuery)

2007-05-31 Thread Rob Desbois
-- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: how to the pass element to a plugin ?

2007-05-31 Thread Rob Desbois
that tomorrow back at work.It looks correct. I never used children(), and its seems to solve issues I had on other scripts. I also dream on a brothers() method (all other siblings except itself) ... Olivier Rob Desbois wrote: Yes you're absolutely correct. Try this: jQuery.fn.accordionQuizz

[jQuery] Re: Select multiple widget

2007-05-30 Thread Rob Desbois
)) them in the original one, but I did not succeed in selecting the item in the original list without unselecting the ones that are already selected. It seems that nothing happens when I do option.attr(selected,selected) or option.select(). Any idea ? Olive. -- Rob Desbois Eml: [EMAIL PROTECTED

[jQuery] ANNOUNCE new plugin jqMultiSelects: move options between select boxes

2007-05-30 Thread Rob Desbois
Hi all, I've consolidated my code for moving option elements between select boxes into a jQuery plugin. It is currently very simple and is the first release, available from http://code.google.com/p/jqmultiselects/ Any suggestions would be most welcome :-) --rob

[jQuery] Re: how to the pass element to a plugin ?

2007-05-30 Thread Rob Desbois
= function(accordion){ jQuery(accordion+' [EMAIL PROTECTED], #'+accordion+' label').each(function(){ How to do in order to call the plugin this way : $('#accordion').accordionQuizz(); thanks Olivier -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's

[jQuery] Re: how to the pass element to a plugin ?

2007-05-30 Thread Rob Desbois
and their labels within an element such as #accordion. Olivier On 5/30/07, Rob Desbois [EMAIL PROTECTED] wrote: Olivier, If you call $(...).accordionQuizz() then the jQuery object (result of $(...)) is accessible via the 'this' object in your function: jQuery.fn.accordionQuizz = function(accordion

[jQuery] Re: jquery.tabs - is it possible?

2007-05-25 Thread Rob Desbois
lia href=#fragment-3Tabs are flexible again/a/ li /ul /div How can I make it work without changing my code? -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full

[jQuery] Re: Pretty cool 'add to bucket' function

2007-05-25 Thread Rob Desbois
from the bucket could be better. Anyway, I saw it and thought 'that's just begging to be jQueried', so who's up for it? :) Adam -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full

[jQuery] Re: Question about the context attribute of a jQuery call

2007-05-24 Thread Rob Desbois
to have a string as the second parameter to jQuery. Try this instead: $(#redlineSelect #make).click(...); ~Sean -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh

[jQuery] Re: Performance tip

2007-05-24 Thread Rob Desbois
, Rob Desbois [EMAIL PROTECTED] wrote: Absolutely, no loop should call a determinate function with the same argument(s) on every iteration. In other words, if a function is called in a loop and it will return the same value for each iteration take it OUT of the loop. Also Gordon, remember

[jQuery] Re: Urgent: Can't use attr(selected, true) on option in IE6

2007-05-24 Thread Rob Desbois
(selected, true); } } -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view

[jQuery] Re: Urgent: Can't use attr(selected, true) on option in IE6

2007-05-24 Thread Rob Desbois
(selected, true); } } -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: jQuery and Tabs plug-in

2007-05-23 Thread Rob Desbois
end-- div id=contact class=tabs-containerContact/div!--contact end-- /div!--content end-- div id=footerCont div id=footer/div!--footer end-- /div!--footerCont end-- /body /html -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's

[jQuery] Re: jQuery and Tabs plug-in

2007-05-23 Thread Rob Desbois
layout the ul *should* be attached to the container div - it would look pretty odd if the tabs were in a different place to the content! --rob On 5/23/07, Klaus Hartl [EMAIL PROTECTED] wrote: Rob Desbois wrote: Bradley, It looks like the tab divs must be in the same container

[jQuery] Re: Performance tip

2007-05-23 Thread Rob Desbois
: 3146.875ms One more line of code, a bit more memory used, but huge win in loops. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
that it's clickable. Thanks in advance for any tips, suggestion, guides cheers, james -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
a tags to resemble buttons. Best, Bob. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: http error: #406 using jqUploader

2007-05-22 Thread Rob Desbois
format or other? --rob On 5/22/07, Matt2012 [EMAIL PROTECTED] wrote: Hi im getting a http error: #406 when using jqUploader anyone else had this and no what might be causing it? Matt. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
a text button? a href=#Click Me!/a Slightly offtopic, but you might want to look into this: http://particletree.com/features/rediscovering-the-button-element/ Besides the button tag, they also go into styling a tags to resemble buttons. Best, Bob. -- Rob Desbois Eml: [EMAIL PROTECTED

[jQuery] Re: Slow selector

2007-05-22 Thread Rob Desbois
]', this).attr ('value'), 10); // Do stuff }); Obviously the fields can't have the same ID as that would break the validity of the HTML. Field names do not have to be unique so it seemed logical to use them as the basis of selecting the collection of elements to work with. -- Rob Desbois Eml

[jQuery] Re: $(document).ready fires endlessly in firefox, opera

2007-05-18 Thread Rob Desbois
it. I'm using jQuery 1.1.2 -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: Difference of $.getJSON versus $get

2007-04-30 Thread Rob Desbois
://en.wikipedia.org/wiki/JSON [2]http://docs.jquery.com/Ajax#.24.getJSON.28_url.2C_params.2C_callback_.29 [3]http://docs.jquery.com/Ajax -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/152 -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's

[jQuery] Re: tickbox close window

2007-04-30 Thread Rob Desbois
parent.TB_remove(); /script its not working... how its can be done right? -- View this message in context: http://www.nabble.com/tickbox-close-window-tf3664867s15494.html#a1024010655 Sent from the JQuery mailing list archive at Nabble.com56. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631

[jQuery] Re: Line Wrap on Multiple Select Box

2007-04-27 Thread Rob Desbois
if this is not possible then what is the best way to show the long options (using tooltip etc.) ? as they get cut off if the width is defined. Sharan. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale

[jQuery] Re: fire script on return values.. how?

2007-04-26 Thread Rob Desbois
://www.nabble.com/fire-script-on-return-values..-how--tf3651533s15494.html#a10200072 Sent from the JQuery mailing list archive at Nabble.com. -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale

[jQuery] Re: looking for plugin: column hider

2007-04-25 Thread Rob Desbois
Is http://p.sohei.org/jquery-plugins/columnmanager what you're thinking of? rob On 4/25/07, Ariel Jakobovits [EMAIL PROTECTED] wrote: wasn't there a plugin that could hide table columns? what is it called? -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987

[jQuery] Re: Best way to determine if a user has Javascript enabled?

2007-04-20 Thread Rob Desbois
... Is there a fool-proof way to determine if a user has Javascript enabled in their browser? Rick -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh

[jQuery] Re: newb needing a little assistance - Checking if an input value is a Number

2007-04-19 Thread Rob Desbois
type=text style=width: 20px /br / input class=inputAdd type=text style=width: 20px /br / input class=inputAdd type=text style=width: 20px /br / TOTAL: input class=inputTotal type=text / /form -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Rob Desbois Eml: [EMAIL

[jQuery] Re: Memory problem

2007-04-19 Thread Rob Desbois
, clickhandler); setTimeout(render, 1000); } $(window).ready(render); /script -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: ThickBox question

2007-04-18 Thread Rob Desbois
to trigger the opening of a thickbox without a link? In other words, I want to do this: script if(true){ open.thickbox.somehow(url, width, height, etc, etc, etc) } /script Thanks, Chris -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's

[jQuery] Re: vars in unnamed functions

2007-04-18 Thread Rob Desbois
(aVariable); } }; temp = new anotherClass(settings); } anotherClass.callThatFunction(); -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh

[jQuery] Re: ThickBox question

2007-04-18 Thread Rob Desbois
: $('#trigger-thickbox').trigger('click'); Don't know if that helps. -- Klaus -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: custom selecters

2007-04-16 Thread Rob Desbois
or divname453 so how can I select all divs with a name divname plus some random numbers -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug

[jQuery] Re: jquery modal form not loading - help!

2007-04-16 Thread Rob Desbois
:\) Thank you -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: Moving to Google Groups (Finally)

2007-04-04 Thread Rob Desbois
that up for a while longer, or go ahead and remove it? ~Trans -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-04 Thread Rob Desbois
: http://www.pengoworks.com/workshop/jquery_demo/ex8.1_option_transfer.htm You could use the basic idea and make it a jQuery plug-in to make it easier to use. -Dan -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Rob Desbois
property just fine. Well this example is far from jQuerified (I'm coining a new term,) it should show you what you need. -Dan -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Rob Desbois
2, 11:58 am, [rob desbois] [EMAIL PROTECTED] wrote: Hi all, I've just discovered something I didn't know: IE (6) does not generate click / dblclick events for option elements. I'm creating some code to work around this issue (which will be made available when complete), but have a further

[jQuery] working around IE's lack of option click/dblclick events

2007-04-02 Thread [rob desbois]
Hi all, I've just discovered something I didn't know: IE (6) does not generate click / dblclick events for option elements. I'm creating some code to work around this issue (which will be made available when complete), but have a further problem in that when IE calls the select's click handler,

[jQuery] Re: id or class

2007-04-02 Thread Rob Desbois
-Geoff -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: id or class

2007-04-02 Thread Rob Desbois
benefit from using an id? These containers will be accessed rather frequently, so speed would make a difference Any thoughts? Thanks -Geoff -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 There's a whale there's a whale there's a whale fish he cried

<    1   2