[jQuery] [validate] validation, only onblur

2008-12-17 Thread casavecchio
Hallo, is it possible to validate fields only onblur, also when it was validated before? Boris

[jQuery] Re: Get value from option... Internet Explorer 7

2008-12-17 Thread casavecchio
or try this $(document).ready( function() { $('select').change( function() { timecode = $(this).val(); }); }); On 17 Dez., 12:00, MacTommy macto...@spray.se wrote: Hi, I try to catch selected choice in my dropdown inside IE7. span id=prefix   select    

[jQuery] Re: howto integrate callback into a plugin

2008-09-25 Thread casavecchio
ok, i found it: $.isFunction(callback) callback(); thats all! On 24 Sep., 16:55, casavecchio [EMAIL PROTECTED] wrote: Hello jquery-Group, i would like to integrate a callback into the lightbox-plugin. May somebody can give me a hint how to do that? I dont need all the image- stuff from

[jQuery] howto integrate callback into a plugin

2008-09-24 Thread casavecchio
Hello jquery-Group, i would like to integrate a callback into the lightbox-plugin. May somebody can give me a hint how to do that? I dont need all the image- stuff from the plugin, but want to use the overlay-method and load forms via ajax into the overlay by a callback. Thx in advance Boris

[jQuery] variable substitutioin in html-snippet

2008-09-17 Thread casavecchio
Hello, i would like to load always the same snippet of html over ajax and dependent on the click substitute ids and classes in the loaded snippet. How that could work? Any suggestions Thx Boris

[jQuery] [validate] custom validation trigger

2008-09-08 Thread casavecchio
Hallo, i would like to validate a formfield. Valid values are 01, 02 31, like all possible days of a month. The field validation should start after blur (like default) and after the second sign was inserted(also in the first lazy-mode). When the values are valid, the next form field should

[jQuery] Re: [validate] custom validation trigger

2008-09-08 Thread casavecchio
()) {     $(#nextfield).focus();   } }); That assumes you've defined max=31 as a rule for dayfield elsewhere. Details about the valid method are here:http://docs.jquery.com/Plugins/Validation/valid Jörn On Mon, Sep 8, 2008 at 4:49 PM, casavecchio [EMAIL PROTECTED] wrote: Hallo, i

[jQuery] Tooltip

2008-06-05 Thread casavecchio
Hello, I am using tooltip 1.2. There is one strange behaviour. And since now i didn't find out how to avoid. Moving over a input-field the tooltip is shown as wanted. But when the mouse is dragged accidently into the input field the tooltip remains highlighted and follows the mouse over the

[jQuery] Re: Tooltip

2008-06-05 Thread casavecchio
to reproduce the issue you describe - could you try to describe the steps necessary in a different way? Thanks Jörn On Thu, Jun 5, 2008 at 3:01 PM, casavecchio [EMAIL PROTECTED] wrote: Hello, I am using tooltip 1.2. There is one strange behaviour. And since now i didn't find out how to avoid

[jQuery] tooltip - highlighting when a formfield is reached by a tab

2008-05-20 Thread casavecchio
Hello, the default behavior of the tooltip to highlight mouseover a formfield is nice and desired. But the tooltip should appear too, when a formfield is accessed by a tab. Is there a way to check which way a field was accessed and change the behavior? Regards Boris

[jQuery] selector as variable

2008-02-06 Thread casavecchio
Hello, i am just trying to read css-properties from div-elements on my site, but i always get an undefined and cannot figure out what going wrong. function showTop(id){ var pos = $jq(#mx- + id); alert($jq(pos).css('top')); } casavecchio

[jQuery] Re: selector as variable

2008-02-06 Thread casavecchio
that makes sense. It wasn't working too. But the reason was mixing up the ids. So, sorry for bothering with stupid questions cheers casavecchio ;)