[jQuery] select box - options manipulation

2007-03-21 Thread Aljosa Mohorovic
i have a DIV.selection tag and inside SELECT with OPTION tags.
using jquery i can find and manipulate options with
$('div.selection').find(option).each and similar but i can't bind
events for option onclick events in IE7 (haven't looked IE6, firefox
works).

so i'm looking for a way to manipulate option tags in select box and
catch events.
is there any way to do this for any browser? simple examples appreciated.

Aljosa

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] interface sortables problem

2007-03-15 Thread Aljosa Mohorovic
my page with jquery/interface code is
http://fakanana.com/test/sort.html with screenshots of my problem.
image thumbs go outside of their container, any tips on how to fix
this?

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jquery thickbox on sourceforge.net

2006-11-29 Thread Aljosa Mohorovic
don't know if you noticed but jquery  thickbox are used on sf.net
download pages...

-- 
Aljosa Mohorovic

http://www.revolucija.hr
Ivana Lucica 5
1 Zagreb, Croatia

+385 (0)1 616 8414

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] image preloading

2006-09-28 Thread Aljosa Mohorovic
is there a preferred way to preload images when site uses jquery? how
do you usually preload images?

Aljosa Mohorovic

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] form elements

2006-09-06 Thread Aljosa Mohorovic
i have a form with id=profile_form, how can i select all form
elements, but not other elements inside form tag?
$('#profile_form').children(pattern);
pattern = /input|textarea|select/

can i do something like:
$('#profile_form').children('input').name('first_name')
to get input field with name 'first_name'?

Aljosa Mohorovic

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] form elements

2006-09-06 Thread Aljosa Mohorovic
thanks, it looks simple now 8-)

On 9/6/06, Sam Collett [EMAIL PROTECTED] wrote:
 On 06/09/06, Aljosa Mohorovic [EMAIL PROTECTED] wrote:
  i have a form with id=profile_form, how can i select all form
  elements, but not other elements inside form tag?
  $('#profile_form').children(pattern);
  pattern = /input|textarea|select/
 

 $('#profile_form').find(input,textarea,select);

  can i do something like:
  $('#profile_form').children('input').name('first_name')
  to get input field with name 'first_name'?
 
  Aljosa Mohorovic
 

 $('#profile_form').find([EMAIL PROTECTED])

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] checkbox items with same name

2006-09-06 Thread Aljosa Mohorovic
i have 5 checkbox items with same name:

input name=geographic value=1 type=checkbox
input name=geographic value=2 type=checkbox
input name=geographic value=3 type=checkbox
input name=geographic value=4 type=checkbox
input name=geographic value=5 type=checkbox

and option to select multiple elements with same name must work.

$('#form_name').find([EMAIL PROTECTED]@checked]) gives me only
one element.
how can i use checkbox elements like select tag?

Aljosa Mohorovic

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/