[Proto-Scripty] Help sizzle select

2012-12-14 Thread kstubs
I have this

$('logins').select('li[class=\'' + group + '\']').invoke('show');


This seems to be matching on an exact class name though, but I have something 
like


li class=seaside favSeaside/li


So if group is fav or group is seaside, then either should return the above.


Thanks for the help.  

Karl..

-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/prototype-scriptaculous/-/R_8NmGQ1sdAJ.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



Re: [Proto-Scripty] Help sizzle select

2012-12-14 Thread Jason Westbrook
Try it this way

$('logins').select('li.seaside').invoke('show');

or

$('logins').select('li.fav').invoke('show');

or with the variable

$('logins').select('li.'+group).invoke('show');


if you use the attribute selector instead of a class selector it
will interpret it very literally instead of this is what I meant

Jason Westbrook | T: 313-799-3770 | jwestbr...@gmail.com



On Fri, Dec 14, 2012 at 1:10 PM, kstubs kst...@gmail.com wrote:

 I have this

 $('logins').select('li[class=\'' + group + '\']').invoke('show');


 This seems to be matching on an exact class name though, but I have something 
 like


 li class=seaside favSeaside/li


 So if group is fav or group is seaside, then either should return the 
 above.


 Thanks for the help.

 Karl..

  --
 You received this message because you are subscribed to the Google Groups
 Prototype  script.aculo.us group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/prototype-scriptaculous/-/R_8NmGQ1sdAJ.
 To post to this group, send email to
 prototype-scriptaculous@googlegroups.com.
 To unsubscribe from this group, send email to
 prototype-scriptaculous+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/prototype-scriptaculous?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



Re: [Proto-Scripty] Help sizzle select

2012-12-14 Thread kstubs
You unsizzled my sizzle!  But yeah, that will work just fine.  Thanks.

On Friday, December 14, 2012 2:28:49 PM UTC-7, Jason wrote:



 Try it this way

 $('logins').select('li.seaside').invoke('show');

 or 

 $('logins').select('li.fav').invoke('show');

 or with the variable

 $('logins').select('li.'+group).invoke('show');


 if you use the attribute selector instead of a class selector it 
 will interpret it very literally instead of this is what I meant

 Jason Westbrook | T: 313-799-3770 | jwest...@gmail.com javascript: 



 On Fri, Dec 14, 2012 at 1:10 PM, kstubs kst...@gmail.com javascript:wrote:

 I have this

 $('logins').select('li[class=\'' + group + '\']').invoke('show');


 This seems to be matching on an exact class name though, but I have 
 something like


 li class=seaside favSeaside/li


 So if group is fav or group is seaside, then either should return the 
 above.


 Thanks for the help.  

 Karl..

  -- 
 You received this message because you are subscribed to the Google Groups 
 Prototype  script.aculo.us group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/prototype-scriptaculous/-/R_8NmGQ1sdAJ.
 To post to this group, send email to 
 prototype-s...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to 
 prototype-scriptaculous+unsubscr...@googlegroups.com javascript:.
 For more options, visit this group at 
 http://groups.google.com/group/prototype-scriptaculous?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/prototype-scriptaculous/-/vVjIPC_zl_oJ.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.