[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

[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

[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 ==

[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] 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: Basic question document.ready

2009-02-17 Thread adexcube
will be executed when the page is fully loaded. On Feb 17, 12:53 pm, adexcube alfonsoenci...@gmail.com wrote: 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

[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 hgisin...@gmail.com wrote: May be $.postJSON work too!!! 2009/2/17 IanW ian.g.win...@googlemail.com Sorry all, I've fixed this now by just appending the time on the end of the request to make it

[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: 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 radioactiv...@gmail.com 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's

[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: load page which includes swf and js functions

2009-02-10 Thread adexcube
, only then should you accept them.'   From:       adexcube alfonsoenci...@gmail.com                                                                   To:         jQuery (English) jquery-en@googlegroups.com                                                       Date:       02/10/2009 10:50 AM

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

2009-02-10 Thread adexcube
:  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 or others, only then should you accept them.'   From:       adexcube alfonsoenci...@gmail.com

[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 tr 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 + 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 !--[if lt IE 7] script src=http://ie7-js.googlecode.com/svn/version/2.0(beta3)/ IE7.js type=text/javascript/script ![endif]-- it breaks completely

[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] 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] 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

[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 to

[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 tr 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); } } }); I

[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 tr 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: