pass a parameter to the function when you setup the onclick event.
(different parameter per link so you can tell)
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.
#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
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
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:
>
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
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!
"Clearly $("#aq-1234") is not"
WHY?
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
Don't do it in ajax. setup the link as a regular tag, and the
browser should handle it for you.
We use scrollTo plugin from Ariel Flesler. Works great.
http://flesler.blogspot.com/2007/10/jqueryscrollto.html
try raising the z-order of the anchor
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.
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
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
>
>
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
where is theuntil2dobject?
eric
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
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(...
19 matches
Mail list logo