Re: [jQuery] Taconite Plugin - New and Improved!

2007-02-08 Thread John Keyes
Mike that looks like a pretty sweet plugin.  I'll definitely give this a spin
in a project I am currently working on.

Thanks,
-John K

On 2/6/07, Mike Alsup [EMAIL PROTECTED] wrote:
 I've just rewritten my Taconite Plugin and added some pretty cool
 features.  If you're not familiar with Taconite, it's an easy way to
 effect multiple client-side updates with the results of a single ajax
 call.  With this latest version there is absolutely no code required
 to process command documents returned from the server.  The plugin
 detects taconite responses and automatically processes them for you.

 Other changes:

 - Available commands now include almost everything in the jQuery API
 - Vastly improved logging/debug support
 - Fully extensible

 Full details and examples can be found at:
 http://www.malsup.com/jquery/taconite/

 Mike

 PS: For anyone using my old xmlExec plugin, this is a drop-in replacement.

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Form validation

2007-02-08 Thread John Keyes
I hadn't noticed that, I thought it was all done with class.
Yeah it'd be good to not require custom attributes.

-John K

On 2/8/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote:
 Anybody knows if we can use it by defining the rules in javascript instead
 of adding custom
 attributes to the HTML ?


 On 2/8/07, Joan Piedra  [EMAIL PROTECTED] wrote:
  Does anyone know if the jQuery validate plugin works with jQuery 1.1.1?
  I've try it, but I didn't work for me, and it looks like jquery with the
 compat plugin does not work either.
 
 
 
  On 2/6/07, Giuliano Marcangelo [EMAIL PROTECTED] wrote:
 
   Alexandre,
  
   take a look at what Jorn cooked up some while back
  
  
 http://fuzz.bassistance.de/jQueryFormValidation/validateTest.html
  
  
  
  
   On 06/02/07, Alexandre Plennevaux  [EMAIL PROTECTED] wrote:
   
   
   
hello,
   
i used to use this very nice library for form validation, back in
 those days when i was using prototype:
 http://tetlaw.id.au/view/javascript/really-easy-field-validation
   
I would like to know if there is anything similar available for
 jquery?
   
Basically, you only need to add a specific class so that the
 corresponding validation is performed, and if faulty, it uses the title
 attribute value as error message.
   
For instance, you can choose between these built-in classes (or
 develop additional validation rules)
   
   
required (not blank)
validate-number (a valid number)
validate-digits (digits only)
validate-alpha (letters only)
validate-alphanum (only letters and numbers)
validate-date (a valid date value)
validate-email (a valid email address)
validate-url (a valid URL)
validate-date-au (a date formatted as; dd/mm/)
validate-currency-dollar (a valid dollar value)
validate-selection (first option e.g. 'Select one...' is not selected
 option)
validate-one-required (At least one textbox/radio element must be
 selected in a group
   
   
Among the options, it allows to validate onblur or on submit.
The demo is here:
 http://tetlaw.id.au/upload/dev/validation/index.html
   
I saw a few form plugins in the plugin section, but they are in alpha
 stages , so i would like to know what you would advise out of your own
 personal experience.
   
Thank you,
   
Alexandre
   
   
   
Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte
Lakensestraat/Rue de Laeken 104
B-1000 Brussel-Bruxelles-Brussels
Belgie-Belgique-Belgium
   
Tel:+32(0)2.219.65.55
Fax:+32(0)2.426.69.86
Mobile:+32(0)476.23.21.42
http://www.lab-au.com
http://www.mediaruimte.be
   
   
 __
   
The information in this e-mail is intended only for the addressee
 named above.  If you are not that addressee, please note that any
 disclosure, distribution or copying of this e-mail is prohibited.
Because e-mail can be electronically altered, the integrity of this
 communication cannot be guaranteed.
   
   
 __
   
   
   
--
Ce message Envoi est certifié sans virus connu.
Analyse effectuée par AVG.
Version: 7.5.441 / Base de données virus: 268.17.27/671 - Date:
 5/02/2007 16:48
   
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
   
   
  
  
   ___
   jQuery mailing list
   discuss@jquery.com
   http://jquery.com/discuss/
  
  
 
 
 
  --
  Joan Piedra || Frontend webdeveloper
  http://joanpiedra.com/
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 
 


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] please un-subscribe me from [jQuery mailing list]

2007-02-08 Thread John Keyes
Goto:
  http://jquery.com/mailman/listinfo/discuss_jquery.com

The unsubscribe section is at the bottom of the page.

-John K

On 2/8/07, Yair Even-Or [EMAIL PROTECTED] wrote:


 its exploding my inbox...
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] scroll method problem

2007-02-02 Thread John Keyes
Hi Yorsal,

This for use with the CSS overflow property[1].  For
example:

div class=scroll style=height: 80px; width: 100px; overflow: scroll;
pPara1/p
pPara2/p
pPara3/p
pPara4/p
pPara5/p
/div

And now you listen for scroll events on that div:

$('.scroll').each( function() {
  $(this).scroll(function() { alert(Hello); })
});

Hope that helps,
-John K

[1] http://www.w3.org/TR/REC-CSS2/visufx.html#overflow

On 2/2/07, 杨乐 [EMAIL PROTECTED] wrote:
 hello, there is a question about scroll method that following below:

 $(p).scroll( function() { alert(Hello); } );


 pHello/p

 p onscroll=alert('hello')Hello/p

 but it's not really work when i write code like this:

 $(body).scroll( function() { alert(Hello); } );

 do you know why?
 --
 yorsal

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread John Keyes
Congrats to all three new members, in my short time using
jQuery their efforts have been very helpful.

-John K

On 2/2/07, Rey Bango [EMAIL PROTECTED] wrote:
 The jQuery team would like to welcome our newest team members, Yehdua
 Katz, Nate Cavanaugh,  Klaus Hartl. These three developers have made
 invaluable contributions to the jQuery projects in terms of time,
 knowledge and commitment to the community.

 Yehuda is a developer living in New York City who maintains the web site
 Visual jQuery, and publishes the Visual jQuery Magazine. Additionally,
 he's a frequent contributor to the jQuery Blog and promoter of good
 practices within the jQuery core. As a member of the evangelism team
 he's working to help people discover jQuery; actively trying to find and
 promote jQuery to new users.

 Nate is a designer living in California. He was responsible for the
 recent redesign of the jQuery site. He's going to be helping to design
 new portions of the site, and help to bring outdated portions of the
 site inline with the rest.

 Klaus has been one of the most vocal supporter of jQuery and unobtrusive
 design on the jQuery mailing list. His ability to expertly explain
 quality, unobtrusive, solutions to problems is invaluable will be a
 tremendous boon to the jQuery project. Klaus will be working with both
 the Evangelism  Dev teams, to help promote jQuery and expand its reach
 as well as maintaining Thickbox and the Tabs plugin. He will also be
 spearheading the effort to make Tabs an official plugin.

 We're very pleased to be working with all of you and welcome you to the
 jQuery team.

 The jQuery Project Team

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] [ANN] Downloadable Visual jQuery

2007-01-29 Thread John Keyes
Thanks for this fantastic resource Yehuda, it rocks.

-John K

On 1/29/07, Yehuda Katz [EMAIL PROTECTED] wrote:
 Hi All,

 At long last, I have put together a downloadable Visual jQuery package.
 Simply go to http://www.visualjquery.com and click Download. By default,
 the package comes with the most recent HTML, but you can easily add other
 versions by just saving any of the versioned HTMLs into the same directory.

 I have also uploaded the docs for 1.1.1.

 --
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/





-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Download-able documentation

2007-01-28 Thread John Keyes
Hi Ken,

You could download the recently mentioned api-browser[1] or
download the documentation site to your local disk using
a HTML spider like Free Download Manager[2] (Windows XP).

Hope that's of some help to you.

-John K

[1] http://jquery.bassistance.de/api-browser/
[2] http://www.freedownloadmanager.org/


On 1/28/07, Ken Saggy [EMAIL PROTECTED] wrote:
 Hi guys,
 I was thinking... why not create some sort of download-able documentation
 format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file? (kind of
 like PHP or MySQL have)
 I personally work a lot on my laptop, ofter not accessible to an internet
 connectionif there could be some way to have all of jQuery's
 documentation available for download it would be great. wouldn't you agree?

 I'd like to hear what you have to say on the subject..

 Best regards,
 Ken.

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Download-able documentation

2007-01-28 Thread John Keyes
Great news.  I love the new version by the way.

-John K

On 1/28/07, Yehuda Katz [EMAIL PROTECTED] wrote:
 I will be releasing a downloadable form of Visual jQuery today.

 -- Yehuda


 On 1/28/07, John Keyes [EMAIL PROTECTED]  wrote:
  Hi Ken,
 
  You could download the recently mentioned api-browser[1] or
  download the documentation site to your local disk using
  a HTML spider like Free Download Manager[2] (Windows XP).
 
  Hope that's of some help to you.
 
  -John K
 
  [1] http://jquery.bassistance.de/api-browser/
  [2] http://www.freedownloadmanager.org/
 
 
  On 1/28/07, Ken Saggy [EMAIL PROTECTED]  wrote:
   Hi guys,
   I was thinking... why not create some sort of download-able
 documentation
   format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file?
 (kind of
   like PHP or MySQL have)
   I personally work a lot on my laptop, ofter not accessible to an
 internet
   connectionif there could be some way to have all of jQuery's
   documentation available for download it would be great. wouldn't you
 agree?
  
   I'd like to hear what you have to say on the subject..
  
   Best regards,
   Ken.
  
   ___
   jQuery mailing list
   discuss@jquery.com
   http://jquery.com/discuss/
  
  
 
 
  --
  me: http://www.keyes.ie/johnnyk
  job: http://www.putplace.com
 
  charities: http://www.oxfam.ie | http://www.bothar.org |
 http://www.ipcc.ie
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 



 --
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/