[jQuery] Re: Targeting/selecting via the title atribute of a link?

2009-12-23 Thread Janmansilver
ec 23, 2009 at 8:30 AM, Janmansilver wrote: > > I have to add som jquery magic to a link where the only unique > > identifier is the "title"-atribute? > > > my code: > > > > > > How do I target this via Jquery? > > -- > Charlie Grieferhtt

[jQuery] Targeting/selecting via the title atribute of a link?

2009-12-23 Thread Janmansilver
I have to add som jquery magic to a link where the only unique identifier is the "title"-atribute? my code: How do I target this via Jquery?

[jQuery] Re: Comparing or checking for a specific "sub" class?

2009-11-27 Thread Janmansilver
;div').fadeIn(0); }, >             function() { $(this).children('a').children('div').fadeOut(200);} > >         ); >    }); > > > You could also (again ignoring the invalid HTML problem) simplify the > .children bit like this: > >     $(th

[jQuery] Comparing or checking for a specific "sub" class?

2009-11-26 Thread Janmansilver
I have a menu looking like this: ... ... ... and so on... I then have a mouseenter function that highlights/"de"-highlights the various menu items, but I would like to not having it affect the item with the extra class "current_page_item". How do I solve this? my current code: $(document)

[jQuery] Re: Jquery and math (resize image through a slider?)

2009-01-04 Thread Janmansilver
oh i should have been using "ui.value" instead: $('.borge').css('height', ui.value * 10); i guess - this seems to work. On Jan 4, 7:51 pm, Janmansilver wrote: > I want to scale images via Jquery's UI slider much like this: >

[jQuery] Jquery and math (resize image through a slider?)

2009-01-04 Thread Janmansilver
I want to scale images via Jquery's UI slider much like this: $('.imageExample').css('height', ui.handle.css('left')); But I don't want to do it in a "ratio 1:1 way" i would like to say: $('.imageExample').css('height', ui.handle.css('left') / 200 * 100 ); But this does not wo

[jQuery] Re: Hovering the mouse through multiple div's that intersect?

2008-12-15 Thread Janmansilver
> > JK > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Janmansilver > Sent: Monday, December 15, 2008 4:09 PM > To: jQuery (English) > Subject: [jQuery] Hovering the mouse through multiple div's

[jQuery] Hovering the mouse through multiple div's that intersect?

2008-12-15 Thread Janmansilver
I have 4 div "boxes" that intersect with each other. They are all supposed to fade in if the mouse is hovering over any of them and not fade out when the mouse hovers from from one div "box" to another directly, only when the mouse leaves the area that all the divs cover, are they supposed to fade