[jQuery] validate plugin step by step form

2009-09-28 Thread adexcube
Hi, I'm creating a step by step form using jquery ui tabs and validation plugin, the problem is that I've got just one form ( and I have to ) so on first step the form is validated but all errors an others steps are displayed. I'm using an approach of http://jquery.bassistance.de/validate/demo/mul

[jQuery] validate date regexp

2009-09-24 Thread adexcube
Hi, I'm using the jQuery validation plugin + masked Input 1.2.2 and both works very well. I'd like to add a validation function for dates with the format dd/mm/ I took the regexp from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ specifically from Marco Antonio's post but if

[jQuery] Intercept user submission

2009-08-06 Thread adexcube
Hi, I'm using a bespoke software which I can't access directly into the code that produce. I'm adding functionalities with jquery but I need to intercept all user submissions. At the moment the software produces this function function submitForm() { if (typeof validateIsSingleSubmit == 'function

[jQuery] Stop effect

2009-02-20 Thread adexcube
Hi, how can I stop this effect? $('#y').fadeOut('slow').animate({opacity: 1.0}, 3000).fadeIn('slow'); I've tried independently $('#y').stop(); $('#y').stop(true); $('#y').stop(true,true); without any result thanks

[jQuery] Re: getJSON IE7 problem- caching request/responses?

2009-02-17 Thread adexcube
You can try $.ajaxSetup ({ cache: false}); Cheers On 17 Feb, 13:26, Hernando Gisinger wrote: > May be $.postJSON work too!!! > > 2009/2/17 IanW > > > > > Sorry all, I've fixed this now by just appending the time on the end > > of the request to make it appear differerent to IE each time, this

[jQuery] Re: Basic question document.ready

2009-02-17 Thread adexcube
ther binding function to an event, and that function will be > executed when the page is fully loaded. > > On Feb 17, 12:53 pm, adexcube wrote: > > > Hi, I've seen many approaches to document.ready function but I'm just > > wondering what's the differenc

[jQuery] Basic question document.ready

2009-02-17 Thread adexcube
Hi, I've seen many approaches to document.ready function but I'm just wondering what's the difference between jQuery(function($)... $(document).ready(function () {... and $(function()... are all the same? Thanks

[jQuery] Re: Intercept links from flash

2009-02-11 Thread adexcube
Thanks for your response. have you got any example or link to check? Thanks On 11 Feb, 09:55, Liam Potter wrote: > in the flash rather then using getUrl, you could just send the url to a > javascript var. > > adexcube wrote: > > Hi, I've got a flash object who loads pdf

[jQuery] Intercept links from flash

2009-02-11 Thread adexcube
Hi, I've got a flash object who loads pdf's and there's a lot of links on the pdf. Is there a way to catch or intercept all links with jquery? I want to stop the link redirection, I just want the link itself. I tried livequery with no result. :( Thanks

[jQuery] Re: load page which includes swf and js functions

2009-02-10 Thread adexcube
9-517-1568 Tieline:  255-1568 > E-mail:  mjlaw...@us.ibm.com > > 'Examine my teachings critically, as a gold assayer would test gold. If you > find they make sense, conform to your experience, and don't harm yourself > o

[jQuery] Re: load page which includes swf and js functions

2009-02-10 Thread adexcube
rself > or others, only then should you accept them.' > >   From:       adexcube                             >                                     > >   To:         "jQuery (English)"        

[jQuery] load page which includes swf and js functions

2009-02-10 Thread adexcube
Hi, I'm trying to load a remote page using load function $('#middle').load("test.php"); that page (test.php) has javascript functions that embed an swf using swf plugin. The problem is that it only loads html content and doesn't execute any javascript function. Any ideas? Thanks

[jQuery] Re: Superfish + IE7 dean edwards project

2008-11-03 Thread adexcube
Are you working on that? Thanks On Oct 30, 1:15 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Do the submenus still appear 100% width if you remove the Superfish JS > code so that the menu is pure CSS plus IE7.js ? > > Joel Birch.

[jQuery] Form plugin + Table Drag and Drop plugin

2008-10-31 Thread adexcube
Hi, what I'm trying to do is when a user clicks on submit the form sends all the form variables + the id's that tDnD generates using ajax. Also when I tried to serialize the table outside the onDrop function it generates an error. I tried many ways to do it but without any success. Ideas are: ***

[jQuery] Superfish extra request

2008-10-30 Thread adexcube
Hi, I modified the skin of the menu using png images and I realised that when the menu completely loads if you hover any item of the menu, the menu makes a request to the server in order to obtain the hover image. This happens only once. I think while the browser caches the image. How can I stop t

[jQuery] Scroll to top animate in Opera 9+

2008-10-30 Thread adexcube
Hi, I tried successfully this function $('html, body').animate({scrollTop: 0}, 'slow'); on most browsers but in Opera 9+ it doesn't behave correctly, just scrolls some content of the page while other remains static until the function stops? Does someone have noticed this? Thanks

[jQuery] Re: jQuery Problem - Animated scrolling for in page links

2008-10-30 Thread adexcube
Well I´m using this and it works fine $('html, body').animate({scrollTop:0}, 'slow'); Let me know if you have any issues On Oct 30, 11:01 am, mrleesimpson <[EMAIL PROTECTED]> wrote: > Hi, > > I'm fairly new tojQueryand having some problems with getting a > plugin to work with Wordpress. > >

[jQuery] Re: Superfish + IE7 dean edwards project

2008-10-30 Thread adexcube
Nope, when I remove the Superfish JS it´s displayed correctly. Thanks for your fast response On Oct 30, 1:15 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Do the submenus still appear 100% width if you remove the Superfish JS > code so that the menu is pure CSS plus IE7.js ? > > Joel Birch.

[jQuery] Superfish + IE7 dean edwards project

2008-10-30 Thread adexcube
Hi, I'm just trying to integrate the IE7 project with a superfish plugin/ menu in a horizontal menu It works perfect but when I include this line it breaks completely the menu, displaying every item as a 100% width !! Any suggestions? Cheers

[jQuery] Form plugin + Table Drag and Drop plugin

2008-10-16 Thread adexcube
Hi, what I'm trying to do is when a user clicks on submit the form sends all the form variables + the id's that tDnD generates using ajax. Also when I tried to serialize the table outside the onDrop function it generates an error. I tried many ways to do it but without any success. Ideas are: **

[jQuery] Form plugin + Table Drag and Drop plugin

2008-10-16 Thread adexcube
Hi, what I'm trying to do is when a user clicks on submit the form sends all the form variables + the id's that tDnD generates using ajax. Also when I tried to serialize the table outside the onDrop function it generates an error. I tried many ways to do it but without any success. Ideas are: **

[jQuery] Re: Question: Using Autocomplete to pass the fields name to query URL

2008-10-16 Thread adexcube
Hi, have you tried something like this? $("input:text").focus( function() { alert($ (this).attr("name")); } ).autocomplete("server.php", { extraParams: { fieldname: function() { return $(this).attr("name"); } }

[jQuery] Re: Question: Using Autocomplete to pass the fields name to query URL

2008-10-16 Thread adexcube
Have you tried this? $("input:text").focus( function() { alert($ (this).attr("name")); } ).autocomplete("server.php", { extraParams: { fieldname: function() { return $(this).attr("name"); } } }); It assign the autocomplete function