[jQuery] Re: New JQuery Plugin - Menu Toggle Adder

2008-06-07 Thread steve_f
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

[jQuery] Re: Multiple sub-windows

2008-05-31 Thread steve_f
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

[jQuery] Re: Video Tutorials - any down-loadable ??

2008-05-30 Thread steve_f
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

[jQuery] Re: Get co-ordinates of click on image

2008-05-30 Thread steve_f
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

[jQuery] Re: $(document).ready Events not firing on elements of code injected via ajax call

2008-05-30 Thread steve_f
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

[jQuery] Re: checkbox manipulation and toggle()

2008-05-29 Thread steve_f
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.

[jQuery] Re: .length doesn't work in Firefox

2008-05-28 Thread steve_f
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

[jQuery] Re: Add onclick attribute to a a link - Is it possible ?

2008-05-23 Thread steve_f
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

[jQuery] Re: jQuery tooltip doesn't work after UpdatePanel update?

2008-05-20 Thread steve_f
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

[jQuery] Re: find by partial id

2008-05-11 Thread steve_f
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

[jQuery] Re: How to bind to multiple elements

2008-04-27 Thread steve_f
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. > >

[jQuery] Re: Ajax - synchronous ajax call timeout

2008-04-10 Thread steve_f
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

[jQuery] Ajax - synchronous ajax call timeout

2008-04-09 Thread steve_f
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