[jQuery] Re: get the element that called the function...

2010-01-15 Thread elubin
pass a parameter to the function when you setup the onclick event. (different parameter per link so you can tell)

[jQuery] Re: Firebug gives a "$ is not defined" error

2010-01-07 Thread elubin
if you didn't change ANYTHING, it's possible one of the libraries you are including added another JS library like scriptaculous that is messing up your $ reference.

[jQuery] Re: blockUI for all buttons and a tags

2010-01-05 Thread elubin
#1 is a well known issue in IE (the cursor doesn't change back). the fix is : $.blockUI({ message: blah blah blah css : { cursor: 'default', }, overlayCSS : { cursor: 'default' }, }); On Jan 5, 7:14 am, mpgjunky

[jQuery] blockUI and iframe

2009-10-28 Thread elubin
is it possible to have blockUI block the entire page, but call it from within an iframe on that page? I don't see any parameters to pass an element or document? i know i can get access to the parent frame with jQuery ('body',parent.document), but wanted to use blockUI from within the iframe, with

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread elubin
this initial example probably didn't work because of the period. there is a documented way to use periods in jquery... in the FAQ section "How do I select an element that has weird characters in its ID? " http://docs.jquery.com/Frequently_Asked_Questions eric On Oct 15, 7:36 am, ade wrote: >

[jQuery] Re: IE: Cursor still displays hourglass symbol after unblocking

2009-09-24 Thread elubin
Yes, same problem I posted yesterday... funny we both hit it this week. hopefully someone can help?? I know the author of blockUI says he monitors this forum... http://groups.google.com/group/jquery-en/browse_thread/thread/9ea1cad2f7bc2535/9edbec1ce17d17f4?hl=en&lnk=gst&q=hourglass#9edbec1ce17

[jQuery] blockUI leaves hourglass on IE8

2009-09-23 Thread elubin
Does anyone have a fix for the problem where blockUI plugin leaves the hourglass icon when the popover goes away? it can be seen on the blockUI demo page using IE8. simply click the Default Message and don't move the mouse. http://malsup.com/jquery/block/#page thanks in advance!

[jQuery] Re: ID naming conventions and $.scrollTo()

2009-09-17 Thread elubin
"Clearly $("#aq-1234") is not" WHY?

[jQuery] Re: Looping through all unchecked checkboxes - how to do it?

2009-08-26 Thread elubin
I don't believe there is an :unchecked selected. I think you want :not:checked On Aug 26, 3:42 pm, Brett DeWoody wrote: > I have a function which is executed whenever someone clicks a checkbox > on the page.  There are lots of checkboxes on the page.  I want the > function to be performed on

[jQuery] Re: Ajax response attached file

2009-08-04 Thread elubin
Don't do it in ajax. setup the link as a regular tag, and the browser should handle it for you.

[jQuery] Re: scrolling above the error field to include the label

2009-08-04 Thread elubin
We use scrollTo plugin from Ariel Flesler. Works great. http://flesler.blogspot.com/2007/10/jqueryscrollto.html

[jQuery] Re: IE click event handling problem

2009-08-04 Thread elubin
try raising the z-order of the anchor

[jQuery] pulsate messes up font in IE 7

2009-06-08 Thread elubin
has anyone else seen the pulsate effect mess up the look of their font in IE 7? takes it from a clean edge to a very jagged and not clean looking. does anyone have a workaround for this? i can post a code sample if necessary... here is an example image of before and after... http://www.elubin.

[jQuery] IE issue with pulsate

2009-06-03 Thread elubin
In IE, when I use the pulsate effect after an insertBefore or insertAfter, the html and/or hover gets messed up. same exact code works fine in firefox. THE ISSUE is before you push the pulsate button, as you hover over the rows, ANYWHERE on the row, the XXX shows up on the right side of the tabl

[jQuery] Re: help using parent()

2009-05-19 Thread elubin
stor but not a > direct parent. .parents() > <http://docs.jquery.com/Traversing/parents#expr>will look for > ancestors. > In other news, please use classes on your s instead of pattern matching > the id. It's better for a variety of reasons. > > aquaone > >

[jQuery] help using parent()

2009-05-19 Thread elubin
I am trying to find the parent of a tag. In the following code, I do not understand why the alert shows 0 instead of 1?? $(function(){ var x = $('#row_3'); var y = x.parent('div[id^=idSection_]'); alert( y.length ); }); eric 1 eric 2

[jQuery] Re: jQuery Countdown, can anyone get it to work??

2009-05-15 Thread elubin
where is theuntil2dobject? eric

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread elubin
add a click handler to each checkbox (you could use a selector and loop through with $.each). when clicked, the function could use the same selected and loop through again making sure the others are off. Eric On May 15, 10:38 am, bharani kumar wrote: > Hi all > > Can u tell me , how to unche

[jQuery] how do i select all anchors OUTSIDE of a specific tag

2008-12-18 Thread elubin
How do i select all of the anchor links that are NOT in the div x? outide div 1 inside div 1 inside div 2 inside div 3 outide div 2 outide div 3 // this doesn't work $('body').not('#x').find('a').click(... // this doesn't work $('a').not('#x a').click(...