Re: [jQuery] Show/hide div based on URL parameter

2010-02-14 Thread Andrei Eftimie
st that. > > I have tried many variations with IF and ELSE statements but nothing ever > seems to work as i am probably missing how to close tags properly etc. > > Would anyone be willing to steer me in the right direction? > > > -- > View this message in context: > http://old

Re: [jQuery] how to get href value

2010-01-23 Thread Andrei Eftimie
legation: $(document).ready(function() { $(document).click(function(event){ if ($(event.target).is('a') { alert( "You clicked a link to " + event.target.href); return false; } }); }); -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Specific type of menu action

2010-01-10 Thread Andrei Eftimie
ww.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Extracting content from a div?

2010-01-09 Thread Andrei Eftimie
google, but all they seem to be > talking about is extracting from the current page, which I don't want : > ( > > TIA! > > Andy -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Trying to select the first visible child in each group.

2009-12-14 Thread Andrei Eftimie
> > http://jsbin.com/opaze3/edit > > Any advice would be greatly appreciated. > > Cheers, > Matt > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Re: Positioning of nested child elements when using sliders/carousels?

2009-12-13 Thread Andrei Eftimie
at can still > look nice in older browsers (you know what I'm saying, no need to > mention it here). > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Re: Positioning of nested child elements when using sliders/carousels?

2009-12-13 Thread Andrei Eftimie
t alternative. > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] jquery/png problem

2009-11-13 Thread Andrei Eftimie
ex. use "/images/twitter.png" instead of "images/twitter.png" or 2. declare a http://example.com/"; /> in your document head -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] jquery/png problem

2009-11-13 Thread Andrei Eftimie
ry-png-problem-tp26343402s27240p26343402.html > Sent from the jQuery General Discussion mailing list archive at Nabble.com. > > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Re: Superfish - Auto Arrows on sub menus only?

2009-11-12 Thread Andrei Eftimie
ems > that happen to have a sub-level of ul li, but that are NOT at the top > level. Well, just delete the markup for the arrows then: $('#nav > li > a span').remove(); -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] CSSIE => jQuery plugin to fix IE's CSS

2009-11-12 Thread Andrei Eftimie
ocus >    * plus others > > blog post => > http://blog.parkerfox.co.uk/2009/11/12/css-in-your-face-only-ie-need-to-apply/ > > source => http://github.com/weepy/cssie > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Superfish - Auto Arrows on sub menus only?

2009-11-12 Thread Andrei Eftimie
sue) For a HTML like this: Item 1 Sub Item 1 Sub Item 2 Sub Item 3 ... CSS #nav li li { background: url(arrow.gif) no-repeat 0 50%; padding-left: 10px; } Using CSS descendant selectors you can style only the grand children list-elements of the list. -- And

Re: [jQuery] error when using a timeout

2009-11-12 Thread Andrei Eftimie
ything in this context. setTimeout works in the global scope, so the reference to the object you want animated is lost. -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] jQuery not obeying my css? or applying its own during effect?

2009-11-12 Thread Andrei Eftimie
elp would be great. > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] autocomplete div don't disappear after move scroll

2009-11-12 Thread Andrei Eftimie
oaded bgiframe plugin, there is something I have to do to make it > behave as I expect? > > > Daniele. > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Get paste event text.

2009-11-12 Thread Andrei Eftimie
ert(e.clipboardData.getData("Text")); >    }); > > > but I do not get anything. > Can anybody give me any ideas?? > > Thanks, > Sincerely, > Sonal. > -- > View this message in context: > http://old.nabble.com/Get-paste-event-text.-tp26322586s27240p263225

Re: [jQuery] IE radio button show nothing after click or change

2009-11-12 Thread Andrei Eftimie
#x27;radioname']:checked").val()  ); > }); > $("input[name='radioname']").change(function() { >                alert ( $("input[name='radioname']:checked").val()  ); > }); > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] jQuery Pagination - Return to top of screen

2009-11-12 Thread Andrei Eftimie
d(new_content); window.scroll(0,0); return false; } -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
OT designed for Layouts, and inline-block is NOT designed for Layouts. For "real" Layouting we need to wait for the CSS3 Layout module. See http://www.w3.org/TR/2009/WD-css3-layout-20090402/ and http://www.css3.info/introducing-the-flexible-box-layout-module/ for some ideas and implementations.

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
u'd better not use floating positioning (easier on the very short > term, a lot more complicated in mid-long term). > > Michel Belleville > > > 2009/11/12 Andrei Eftimie >> >> This is a CSS issue, not really related to jQuery. >> >> Do something like

Re: [jQuery] Conditionally format rows in a table

2009-11-12 Thread Andrei Eftimie
             $("td:contains('HENGELO')").parent().children().addClass > ('red'); >            }); > > Now I want to get the condition from an ASP control for example a > dropdown or a listbox. How do I use the value of this control in my > jQuery c

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
bus eros, id euismod lacus dolor eget odio. Nam scelerisque. > Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi > lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean > vehicula velit eu tellus interdum rutrum. Maecenas commodo. > Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus > hendrerit hendrerit. >         > > > > > > > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] embed java applets in div element using jquery

2009-11-12 Thread Andrei Eftimie
er styling is gone) > > so how do i make sure that the applet loads in the specified div element > without messing up with the page styling ? > > thanks in advance. > regards, > Krishna > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Re: How to Select element with class, but EXCLUDE its children?

2009-11-01 Thread Andrei Eftimie
1, 2009 at 7:21 PM, jmatthews wrote: > > > On Nov 1, 10:54 am, Andrei Eftimie wrote: >> > Mousing over class="placemark" causes it to fire as if there was a >> > mouseover on class="Senate."  "placemark" has its own class, separate >&

Re: [jQuery] Re: How to Select element with class, but EXCLUDE its children?

2009-11-01 Thread Andrei Eftimie
o, it does not turn blue (good), but it does italicizes > (bad). Not sure, but I think this is actually because table element does only inherit some css properties. (At least I remember it does so in quirksmode) -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Re: How to Select element with class, but EXCLUDE its children?

2009-11-01 Thread Andrei Eftimie
worthy of a write-up in the reference > guide, because there is some odd behavior occurring that Jquery fails > to describe anywhere that I have seen. > > Also, if you are on your toes, you will note that the senator names > italicize, but do not turn blue, when you mouseover them.  So, it is > somehow (God knows!) getting PART of the class of the > grandchild.  The placemark class instructs to not italicize and not > turn blue.  So, it does not turn blue (good), but it does italicizes > (bad). > > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro

Re: [jQuery] Installing jQuery to use jQuery UI

2009-11-01 Thread Andrei Eftimie
a summer job and I was using UltraEdit to write HTML and CSS. > > Could someone help me with this installation?  I don't understand the > directions at http://docs.jquery.com/Downloading_jQuery. > > I only want to use the jQuery UI.  Is that possible? > > Thanks. > -- Andrei Eftimie http://eftimie.com +40 758 833 281 Punct http://designpunct.ro