[jQuery] Can somebody tell me how I can Unsubscribe to the mailing list Pleeeeeeeeease!

2010-01-07 Thread Darren Bernard
Can somebody tell me how I can Unsubscribe to the mailing list Please! _ Got more than one Hotmail account? Save time by linking them together http://clk.atdmt.com/UKM/go/186394591/

[jQuery] Re: tablesorter and pager: How to modify table cells in cache?

2009-06-26 Thread Darren Brierton
Do you have this working somewhere I can look at I have some > > ideas, but not sure... > > > Worst case if you can not find the cached rows you could just > > create a javascript array of the choosen row when they click the check > > box then refer to your own array >

[jQuery] Re: tablesorter and pager: How to modify table cells in cache?

2009-06-26 Thread Darren Brierton
can look at I have some > ideas, but not sure... > > Worst case if you can not find the cached rows you could just > create a javascript array of the choosen row when they click the check > box then refer to your own array > > On Jun 25, 11:23 am, Darren Brierton >

[jQuery] tablesorter and pager: How to modify table cells in cache?

2009-06-25 Thread Darren Brierton
anyone enlighten me? Thanks in advance. Best, Darren

[jQuery] Request for note added to doc for ready()

2008-12-25 Thread Darren
Please can a note be added to the doc for ready() wrt the bug in Safari that div widths can be reported incorrectly if external stylesheet is included after jquery.js. Please see http://dev.jquery.com/ticket/3690 Thanks, Darren

[jQuery] Re: element creation using wrap behaves oddly

2008-09-25 Thread darren
s bound functions when passed > to the wrap() function. There must be a reason for that, like the > element having to be recreated and it's impossible to recover > functions bound to events, but I haven't looked at the code. > > Anyway, hope the alternatives I showed ca

[jQuery] Re: element creation using wrap behaves oddly

2008-09-25 Thread darren
oo"); > > }); > > As I said before, you can't attach an event handler to the element > before it is appended to the DOM. While you write the click() function > inside thewrap() it will never work. > > - ricardo > > On Sep 25, 4:58 pm, darren <[EMAIL PRO

[jQuery] Re: element creation using wrap behaves oddly

2008-09-25 Thread darren
ks for me: > > $('b').wrap($('').click(function(){ >     alert("foo"); > > }); > > Or if you want the click event assigned to and not > > $('b').wrap($('').parent().click(function(){ >     alert("foo");

[jQuery] element creation using wrap behaves oddly

2008-09-24 Thread darren
i just want to bring this up for discussion to see what people have to say about it and to further my understanding of how jquery works and why it works that way. maybe its a bug? imagine the base code Hello World! // fails to assign click handler: $("b").wrap($("").click(function(){ alert("

[jQuery] element creation using wrap behaves oddly

2008-09-24 Thread darren
i just want to bring this up for discussion to see what people have to say about it and to further my understanding of how jquery works and why it works that way. maybe its a bug? imagine the base code Hello World! // fails to assign click handler: $("b").wrap($("").click(function(){ alert("

[jQuery] problem with a draggable object

2008-07-08 Thread darren
Hi I wrote a script that makes objects that are kind of like sticky notes. You can move them around the page. I'm using .draggable() via the UI core library. My problem is that these notes often have scroll bars on them. When a user clicks the scrollbar to scroll the div, they move the object

[jQuery] Re: cant upgrade from 1.2.3 to 1.2.6

2008-07-03 Thread darren
ull value > to the return array. > > This is likely a bug in FireFox, but it would probably go away if code > blocks { } were expressly defined around the for loop and the if statement. > > JK > > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PRO

[jQuery] Re: cant upgrade from 1.2.3 to 1.2.6

2008-07-02 Thread darren
going to be really hard to see what's going > on. > > Do you have a demo page with this error?  Even if you can't post the full > page for security reasons, if you can reproduce the error with a simpler > demo page that would help track it down. > > JK > >

[jQuery] possible bug in each()? moving from 1.2.3 to 1.2.6

2008-07-02 Thread darren
Hi Im trying to use 1.2.6, moving from 1.2.3. I have a working function in 1.2.3 but it is not working with the updated jquery library, and I'm wondering if i have found a bug. The trouble call is this: jQuery('#apparatus .annotation').each( function(i){ ... When stepping over

[jQuery] cant upgrade from 1.2.3 to 1.2.6

2008-07-02 Thread darren
Hi I'm trying to upgrade a project from jquery 1.2.3 to 1.2.6, but doing so is causing a error in my script Firebug gives the error: object is undefined var name, i = 0, length = object.length; http://../script/jquery-1.2.6.js Line 725 I'm going to try to step through my code and narro

[jQuery] [treeview] hundreds of requests for images in IE6.

2008-07-01 Thread Darren
. Darren

[jQuery] [treeview] hundreds of requests for images in IE6.

2008-07-01 Thread Darren
Hello, I am using the jQuery treeview plugin and when expanding nodes in IE6 the browser is making large amounts of requests for the supporting images. Is there a way around this so that each image is only requested once. I noticed that this also happens with the samples. Thanks. Darren.

[jQuery] when to call noConflict?

2008-05-20 Thread darren
hi everybody I have some code where i need to use jQuery.noConflict() Do i call it before or after jQuery(document).ready() ?

[jQuery] Re: how i can access classes in my div?

2008-05-12 Thread darren
you could even use commas in your selector so that you aren't repeating your statements. On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote: > hdfsuahd it`s ok ok.. > i forgot space.."#box2. bloc-top" > > On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote: > > > how i can access classes in m

[jQuery] Re: growl for jquery

2008-05-12 Thread darren
very nice. I could see myself going way overboard with something like this. Note to self, less is more. On May 11, 4:55 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Growl for jquery > > http://projects.zoulcreations.com/jquery/growl/ > > Rey

[jQuery] Re: JQ Comments and Bug help

2008-05-11 Thread darren
ing, if so, go to www.getfirebug.com and read about the debugger. I promise you its worth your time to learn how to use it. good luck Darren On May 11, 1:07 pm, [EMAIL PROTECTED] wrote: > This message was also posted in the General Discussion Group, but I'm a bit > confused how things wo

[jQuery] Re: find by partial id

2008-05-11 Thread darren
could you try to build up the whole id name with a string variable? var full_id = knownCommonPart + chaingPart; jQuery("#" + full_id).doStuff(); On May 11, 12:37 am, vladv <[EMAIL PROTECTED]> wrote: > hello > please help me with a simple question > > i have a control which is rendered couple of

[jQuery] Re: SELECTOR MADNESS! How To Grab Lowest Child Node's Text?!

2008-05-08 Thread darren
hey joe, it looks like testing node types may help with your problem. Google node types and you'll find that DOM text nodes are type 3, element nodes are type 1 etc etc. You could do something using the selector expression [nodeType=3] to determine if the current node you have selected is a text n

[jQuery] Re: $ is not defined

2008-05-06 Thread darren
yeah I get that error when libraries conflict. We are using the Prototype and jQuery libraries together on a project. If it is an issue of multiple libraries using the $, try the above solution of using jQuery() instead of $(). Also look into the jQuery noConflict function. On May 6, 5:42 pm,

[jQuery] Re: need some help with selecting text nodes

2008-05-06 Thread darren
ery is pretty simple. I > whipped up a sample. > > http://commadot.com/jquery/findTextElements.php > > $("#tln21").next("span").addClass("highlight") > > Sometimes, fancy JS is not as good as clean html. > > Glen > > On Mon, May 5, 2008 at 6

[jQuery] Re: php mysql

2008-05-06 Thread darren
Yeah, you can use jquery to help you make ajax calls to your server, but really, all of the database programming is done there. you'd still use php or python. jquery just hlps you make things look good from the client side. On May 6, 1:58 am, FreakDev <[EMAIL PROTECTED]> wrote: > jQuer is a jav

[jQuery] Re: need some help with selecting text nodes

2008-05-05 Thread darren
; see what they come up with. > Hmm, it would be nice to have a tutorial on how to do this. I can try and > whip one up. > > Glen > > On Mon, May 5, 2008 at 2:47 PM, darren <[EMAIL PROTECTED]> wrote: > > > hi Joe, thanks for your comment > > > If you look

[jQuery] Re: need some help with selecting text nodes

2008-05-05 Thread darren
").text(); > > Like that? By the way, firebug is very helpful to test our selectors and > see what they come up with. > Hmm, it would be nice to have a tutorial on how to do this. I can try and > whip one up. > > Glen > > On Mon, May 5, 2008 at 2:47 PM, darren

[jQuery] Re: need some help with selecting text nodes

2008-05-05 Thread darren
TED]> wrote: > $("#tln21').text(); > > This will return the text associated with id="tln21". > > http://docs.jquery.com/Attributes/text > > Joe > > www.subprint.com > > On May 5, 2:34 pm, darren <[EMAIL PROTECTED]> wrote: > > >

[jQuery] need some help with selecting text nodes

2008-05-05 Thread darren
Hi everybody, new member here. I have a project with the following snipped of code: =start html= As I remember, Adam, it was upon this fashion 5bequeathed me by w

[jQuery] Re: Using jQuery to track advert clicks

2007-12-12 Thread Darren Savery
Hi everyone, Thanks for the help. I ended up using Chris's example. It didn't work at first so I changed the code. Here is the finished jQuery code in case anyone is interested : $(document).ready(function() { $("a.adtrack").click(function(){ //Get url of image advert var adURL = $("a.

[jQuery] Using jQuery to track advert clicks

2007-12-11 Thread Darren Savery
Hi, Is it possible to use jQuery to track advert clicks? I have adverts that appear on certain pages of my site. Whenever someone clicks on an advert, I would like to record this as a new entry in a database table (tblAdvertClicks). I know I could pass the visitor to a processing page then forwa