Your demo page does not work in FF3, also I get a script error running
IE8.0 but in IE7.0 compat mode.
On Jun 7, 4:20 pm, Ed <[EMAIL PROTECTED]> wrote:
> Here's a new JQuery Plugin: Menu Toggle Adder
>
> http://code.google.com/p/js-menu-toggle-adder/
>
> It automatically adds "toggle" triangles
eeek 379k for the pleasure on that demo page
On May 31, 3:05 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> (I thought I posted this yesterday, but don't see it. Apologies if
> double-posted).
>
> Is there a jquery plugin (or something) that would let me have
> multiple sub-windows (divs) o
you could start here http://jqueryfordesigners.com/
find the screencasts tag link - he has four or five you can download
On May 30, 4:40 pm, GiJeet <[EMAIL PROTECTED]> wrote:
> Hello, I'm looking for JQuery tutorials on video that I can download
> and watch offline. I can't watch online. If an
if you pass in the event to the function you can use e.pageX and
e.pageY to get the coordinates of the click event
So:
$("#map").click(function(ev) {
mouseX = ev.pageX;
mouseY = ev.pageY
}
On May 30, 12:02 pm, Michael Price <[EMAIL PROTECTED]> wrote:
> Hi all,
> Working on something for
you can use the live plugin. This basically keeps watch for dom
elements that match the selector given. Thus when you inject new
content into the div it will automatically hookup any matched new
elements.
se here for details http://brandonaaron.net/docs/livequery/
If you need more shout
On May
you need a label and set its for attribute to the checkbox
On May 29, 7:21 pm, jquertil <[EMAIL PROTECTED]> wrote:
> OK I tried my own anticipated solution after looking at some comment
> from The Man Himself, but didn't work.
>
> $("#CheckContainer:not(#Check)").toggle(...); --- does not work.
You need to use val() as you are looking for the value attribute of
the input not the html.
var len = content.val().length
On May 28, 9:47 am, vladv <[EMAIL PROTECTED]> wrote:
> Hello,
> Have some strange behavior with Firefox, can someone please help me
> with this?
>
> This is the code (witho
you need to use bind or click
$('.view-field a').bind('click', function(){return
confirm('sure ?')});
On May 23, 9:09 am, dme69 <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I love jquery but I'm really new to ajax and development (and
> english ;-) ).
>
> I want to add the attribute onclick on so
You need to hookup a callback using the ms ajax page request manager
like so
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
var EndRequestHandler=function(){
ReEnableTooltips();
}
On May 20, 9:36 pm, Gauthier Segay <[EMAIL PROTECTED]> wrote:
> You may need t
you can use the following
$("[EMAIL PROTECTED]'lblName']")
On May 11, 8:37 am, vladv <[EMAIL PROTECTED]> wrote:
> hello
> please help me with a simple question
>
> i have a control which is rendered couple of times (gridview) and gets
> some id which i know only part of, for example if i named
Do you have multiple divs with the same id of 'images'?. if so you
need to start using class name selectors, then you can iterate all the
divs with that clas name e.g
$(".images").each
On Apr 27, 11:25 am, LostCore <[EMAIL PROTECTED]> wrote:
> Hi!
>
> Well, i'll quickly describe my problem.
>
>
Anybody??
On Apr 9, 10:10 pm, steve_f <[EMAIL PROTECTED]> wrote:
> Has anybody implemented a synchronous ajax call with a timeout. I
> cannot get the timeout to fire, instead the ui just locks up, I cannot
> really have this in a live environment, it would really hack a user
Has anybody implemented a synchronous ajax call with a timeout. I
cannot get the timeout to fire, instead the ui just locks up, I cannot
really have this in a live environment, it would really hack a user
off!!!
I am trying to use the synchronous call to compliment a client side
asp.net validator
13 matches
Mail list logo