[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: class toggle navigation

2009-11-04 Thread Bernard Elsmere
j = jQuery.noConflict(); j(document).ready(function() { j('a#content-link').click(function() { j('#content-div').toggle(80); return false; }); }); Do you have any idea how to combine them? As you can probably tell, I'm an a

[jQuery] Re: class toggle navigation

2009-11-02 Thread Bernard Elsmere
ctive'); >     showPic(this); >     return false; >   });}); > > > > ... > > Image   >         >                 title="">01 >                 title="">02 >                 title="">03 >                 title="&

[jQuery] class toggle navigation

2009-11-02 Thread Bernard Elsmere
ck(function () { $(this).toggleClass('active'); }); }); then the links, which also include the showPic function: --- Image   01 02 03 04 ---- Can anyone see what I'm missing? Thanks in advance.. Bernard

[jQuery] Re: Cascade Plugin IE6 bug

2008-11-23 Thread Bernard
Can I send you my customer ?

[jQuery] Cascade Plugin IE6 bug

2008-11-22 Thread Bernard
d why ? Any idea ? Thank you, Bernard

[jQuery] google's gadget API implementation on jQuery

2008-10-17 Thread Bernard Shyu
Hi all, I've implemented a web site (http://www.heremypage.com/), which works like netvibes or igoogle (www.google.com/ig), the so called personalized home portal. The gadgets implementation are almost 80~90% compatible to google gadget APIs http://code.google.com/apis/gadgets/docs/overview.html

[jQuery] [validate] Ability to add rules via multiple validate() or some custom addRule() method

2008-03-28 Thread Bernard
ue, maxLength: 100, } }, messages: { "desc": { required: "Description is required.", maxLength: "Please enter a description no longer then 100 characters long." } } }); }); Thanks in advance for your help, Cheers, Bernard

[jQuery] Re: how to remove a behavior?

2008-02-21 Thread Bernard
I think unbind() does just that : http://docs.jquery.com/Events/unbind#typedata [EMAIL PROTECTED] a écrit : > Hi, > > I have this function ... > > function defineBehaviors() { > $('a.deleteWorksheetItem').click( function() { > alert("Executing action");

[jQuery] Re: Reading in the contents of a file.

2008-02-12 Thread Bernard
Sorry Tstrokes, you don't have access to a file on disk in javascript. you could copy and paste the content in your script as a variable if it's not too long though. whatever you try, the content will be sooner or later uploaded to the user. On 11 fév, 17:41, tstrokes <[EMAIL PROTECTED]> wrote:

[jQuery] serializeArray() function and select tags

2008-02-09 Thread Bernard
ce I add a a "name" attribute to the select tag: >>> $("form#frmFoo").serialize() "mySelect=0" >>> $("form#frmFoo").serializeArray() [Object name=mySelect value=0] are there some html specs I missed on the matter? Bernard