[jQuery] highlightFade for same id

2007-03-30 Thread Web Specialist
How can I display highlightFade for the same id? Using this script below only the first element(Credit Card Flag) with that id looks with highlight. ... script type=text/javascript src=../js/jquery.js/script script type=text/javascript src=../js/jquery.highlightFade.js/script ...

Re: [jQuery] highlightFade for same id

2007-03-30 Thread Web Specialist
]'show_credit_card']).highlightFade({color:'yellow',speed:1000,iterator:'sinusoidal'}); But it seems your elements also have that as a class name, so you can also modify your original as: $('.show_credit_card').highlightFade({color:'yellow',speed:1000,iterator:'sinusoidal'}); -blair Web Specialist wrote

Re: [jQuery] Error in Jorn Form Validation Plugin

2007-03-28 Thread Web Specialist
implemented look like? Where did you get my example code? What's the URL of the form so we can take a look at the problem. -Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Web Specialist Sent: Tuesday, March 27, 2007 9:48 PM To: jQuery Discussion. Subject

[jQuery] Error in Jorn Form Validation Plugin

2007-03-27 Thread Web Specialist
Until yesterday my form with Jorn Form Validation Plugin worked fine only submitting after all required fields filled. Today I insert Dan G Switzer example to display error message in red colour. And my form dies! ;-) After click in submit button appear an error in this part of

[jQuery] loading form field with ajax

2007-03-21 Thread Web Specialist
Hi all I'm looking an example to use in my form. When user insert zip code and press enter my application need to run a ColdFusion function to load city name, state and street name text fields for brazilian postal code. If function doesn't return any data I'll like to show an alert message.

Re: [jQuery] toggle a div based on clicking a specific radio button

2007-03-21 Thread Web Specialist
Andy works fine for me: // possui dependentes $(.show_familiares__pes_ds_dependente_possui).hide(); $([EMAIL PROTECTED]'familiares__pes_ds_dependente_possui']).click(function(){ if ($([EMAIL PROTECTED]'familiares__pes_ds_dependente_possui'[EMAIL

Re: [jQuery] Adding Currency Validation to Jorn's Validation Plug-In

2007-03-11 Thread Web Specialist
Hi Rick. I'm using Jorn's Validation plugin with CF 7.0. But for currency fields used this example for brazilian values(251.251,84): input id=conta__coj_vr_capital_social name=conta__coj_vr_capital_social type=text size=50 value=#LsCurrencyFormat(coj_vr_capital_social,'none')#

Re: [jQuery] Problem with validation

2007-03-08 Thread Web Specialist
Jorn, I'm still having problems to display error messages in a css class. Using Leonardo's suggestion: errorClass: msgerro, errorPlacement: function(error, id) { error.attr(class, msgerro); error.appendTo( element.next() );

Re: [jQuery] Conditional validation - validator plugin.

2007-03-05 Thread Web Specialist
Daemach, Wait for the next release for Jorn's Form Validation plugin. Could be a conditional validation to help us, yeahhh Jorn??? ;-) Cheers 2007/3/5, Daemach [EMAIL PROTECTED]: I need a way to make a field required based on some other condition. Consider the case of a multi-select for Job

[jQuery] Add remove elements in forms - WAS: Re: [FYI] fine Tool used JQuery

2007-03-02 Thread Web Specialist
Wow! Great idea for add and remove elements! A question for everyone: do you know any example about how to use this idea for add or remove elements for input in forms? Looks like: Enter contacts: (an input field text for contact's name) - Add If user clicks in Add link another inpout field

Re: [jQuery] BlockUI 1.0

2007-02-28 Thread Web Specialist
Great job Mike. Awesome! For me is considered to be **one of the best jQuery plugins! Side by side with Jorn's Form Validation, Interface... ;-) Marco 2007/2/28, Mike Alsup [EMAIL PROTECTED]: I just posted a new version of BlockUI. I bumped the version to 1.0 just for fun. Changes: -

[jQuery] bassistance.de Jorn's form validation requirements

2007-02-23 Thread Web Specialist
Hi, do you know the requirements to use Jorn's form validation plugin( http://bassistance.de/jquery-plugins/jquery-plugin-validation/)? Looks like several files needed to run. Exists a lite version? Cheers ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] bassistance.de Jorn's form validation requirements

2007-02-23 Thread Web Specialist
Thanx Jorn. I'm playing with validation plugin now; ;-) Great piece of code! Cheers 2007/2/23, Jörn Zaefferer [EMAIL PROTECTED]: Web Specialist schrieb: Hi, do you know the requirements to use Jorn's form validation plugin(http://bassistance.de/jquery-plugins/jquery-plugin-validation

[jQuery] Hide and show inside JTabs

2007-02-21 Thread Web Specialist
Hi all I'm using JTabs with a big form for improve usability. Works like a charm. Inside this form I'll want to show/hide input fields when user checks/unchecks a radio button. But I have a problem. Using this sample script works fine outside JTabs: Jquery code: script type=text/javascript

Re: [jQuery] Gmail-style updates

2007-02-21 Thread Web Specialist
Hi. Great cfc invocation! Do you have used ajaxcfc? What's $.AjaxCFC? A function? Do you can share that code with us(CFers)? jQuery integration for ajax calls and CFC backend is a great marriage! Cheers 2007/2/21, Daemach [EMAIL PROTECTED]: In what context does the timer run? Each field

Re: [jQuery] accented chars

2007-02-16 Thread Web Specialist
Vaska I'm a brazilian(Portuguese haves accented chars too) and inserting charset parameter resolved: script charset=iso-8859-1 language=JavaScript type=text/javascript src=../js/jquery-latest.js/script Cheers 2007/2/16, Vaska [EMAIL PROTECTED]: I'm trying to internationalize something I'm

[jQuery] Error when calling ajax content

2007-02-09 Thread Web Specialist
Internet Explorer 6 returns an error after running this example: script language=JavaScript src=../js/jquery-latest.js charset=iso-8859-1 type=text/javascript/script script type=text/javascript $(function(){ var showagain = function(){ $(#linkProfessional).animate({opacity:

[jQuery] Works in FF not in IE6

2007-02-08 Thread Web Specialist
I'm using a simple script to load remote content. So simple like this: jQuery.noConflict(); jQuery(document).ready(function(){ var showagain = function(){ jQuery(#linkProfessional).animate({opacity: 1.0}, 1000).show('slow'); }

Re: [jQuery] remote ajax with jquery...

2007-01-31 Thread Web Specialist
Jake, jquery plugin page haves a great plugin for hit remote URL every X time. Named JHeartBeat(http://www.jasons-toolbox.com/JHeartbeat/). Looks like a great choice. Your demo works like that? Cheers 2007/1/31, Ⓙⓐⓚⓔ [EMAIL PROTECTED]: Dan, it's on my home machine

Re: [jQuery] A tooltip filled with informations from a database

2007-01-30 Thread Web Specialist
Cody Lindley haves a great work with your jTip: http://www.codylindley.com/blogstuff/js/jtip/ Cheers 2007/1/30, LPA [EMAIL PROTECTED]: Hi, I need to have a tooltip and when the cursor is over a a it will retrieve datas from mysql tables and print it in the tooltip. Someone already done one

[jQuery] Frames with JQuery. Possible?

2007-01-24 Thread Web Specialist
Hi anyone have an example using JQuery to simulate frames? I'm looking tips to avoid html frameset. Cheers ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] tableEditor plugin Updated : Add new rows

2006-11-30 Thread Web Specialist
Very nice. Cheers 2006/11/30, Brice Burgess [EMAIL PROTECTED]: Ladies, Gents - I've updated tableEditor to include (preliminary) support for adding new rows. To accomplish this I've allowed global access to tableEdtior options via the vault functions. This has the beneficiary side-effect

Re: [jQuery] TableEditor: Flexible In Place editing of HTML Tables (with tableSorter support)

2006-11-28 Thread Web Specialist
Very nice. Do you have a link to download JS code and PHP code? Cheers. 2006/11/28, Isaac Cambron [EMAIL PROTECTED]: I think it's cool and very useful. One thing it could use is a cancel option. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brice

Re: [jQuery] Off topic: which programming language for webdevelopment

2006-11-22 Thread Web Specialist
I'm with Rey Bango team: ColdFusion is a great alternative. 2006/11/22, Jörn Zaefferer [EMAIL PROTECTED]: First of all: apologies for this non-jquery related question, but since there are many experts in web-development on this list, I dare to ask it anyway. Our company is looking for a

Re: [jQuery] Off topic: which programming language for webdevelopment

2006-11-22 Thread Web Specialist
]: On 22/11/06, Web Specialist [EMAIL PROTECTED] wrote: I'm with Rey Bango team: ColdFusion is a great alternative. The syntax certainly is easy to understand if you are comfortable with html. Finding hosts that support it may be more difficult, plus you can't run it for free (in a non-trial way

Re: [jQuery] Plug-in Update: quickSearch

2006-11-10 Thread Web Specialist
Rik,congratulations. Quicksearch plugin is a great piece of code. Only one question: your examples use client data, right? it's possible to load and search table data with ajax requests in our server? Cheers ___ jQuery mailing list discuss@jquery.com