[jQuery] Make sub menu delay before disapper

2009-12-18 Thread Marco Barbosa
Hi all! So I have this simple sub menu with Jquery. The problem is that the child menu is like 2px below the parent, so when the submenu appears I have to be very fast to mouseover it or else it will disapper. The sub menu is absolute positioned and I can't change that right now. So how can I m

[jQuery] Re: setTimeout

2009-12-17 Thread Marco Barbosa
Hi! Sorry to hop in this topic but it's always easier than creating a new one :) My problem is that I have a dropdown list, but the child list (li > ul) is not exactly below the parent. So when I leave the parent to hover the child, it disappears before I have the chance. This is not something I

[jQuery] Re: sliding previous/next content

2009-11-11 Thread Marco Barbosa
your slide() clarification :) ~ Marco Barbosa On 10 Nov, 20:04, Marco Barbosa wrote: > Hi Michel! > > Thanks for the reply! > > Not sure if there are plugins to simply slide up/down. > > I already tried with positioning instead of display:none , but using > slideUp and slideD

[jQuery] Re: sliding previous/next content

2009-11-10 Thread Marco Barbosa
enting the wheel here. > > Michel Belleville > > 2009/11/10 Michel Belleville > > > > > First try the examples for > > .slideUp()<http://docs.jquery.com/Effects/slideUp>and > > .slideDown() <http://docs.jquery.com/Effects/slideDown>. You'll notic

[jQuery] sliding previous/next content

2009-11-10 Thread Marco Barbosa
Hi all! So what I'm trying to do is so simple but it's not working.. All I want to do is to slide up/down to the next/previous content. Here's the code: Previous Calendar Content1 Content2 Content3 Content4 Content5 Content6 Content7

[jQuery] Re: password initial value without masking "****"

2009-10-20 Thread Marco Barbosa
ome text on a password box and hide that > >> text on password box focus ? > > >> On Tue, Oct 20, 2009 at 10:05 AM, Marco Barbosa < > >> marco.barbos...@gmail.com> wrote: > > >>> Hmmm. This is more complicated than I thought. > > >>>

[jQuery] Re: password initial value without masking "****"

2009-10-20 Thread Marco Barbosa
       var passinput = $(".passinput"); > >>                // on text input focus - hide text input and show and focus > >> on password input > >>                textinput.focus() { > >>                    textinput.blur(); > >>                    te

[jQuery] Re: password initial value without masking "****"

2009-10-19 Thread Marco Barbosa
working. The rest of the code seems Ok. What could it be? I like your solution, pretty simple :) I was wondering if we could put this inside the cleanField function but I guess it's not necessary. ~Marco On Oct 19, 2:32 pm, waseem sabjee wrote: > // set the initial type to text &

[jQuery] password initial value without masking "****"

2009-10-19 Thread Marco Barbosa
Hi! I'm trying to achieve something like the Facebook first page (when you're not logged in). I'm using this simple function/plugin to clean the fields once you click them: $.fn.cleanField = function() { return this.focus(function() { if( this.value == this.defaultValue )

[jQuery] update input value onblur

2009-09-05 Thread Marco
I'm learning JQuery and building a page with a table. The table contains multiple tr's andd the tr's contains multiple td's. The td's contain a input element. The first td of a row contains a "select element" and the others a "text element". Now I want to fire a AJAX when the onblur event is fir

[jQuery] Problem Jquery Multiple Uploads

2009-08-24 Thread marco souza
Anybody know if there is any way to return a list of files

[jQuery] Re: number of elements with a specific CSS class

2009-03-28 Thread Marco Elisio Oliveira Jardim
A simple $('#slider .navigation li').length; will make it. ;) _ Lois Griffin: I’m a naughty girl and I need a spanking! Peter Griffin: And I'm a paladin with 18 charisma and 97 hit-points, I can use my helm of disintegration and do 1d4 damage as my half-mage elf

[jQuery] Re: retrieving DOM element with specific CSS class

2009-03-28 Thread Marco Elisio Oliveira Jardim
The jQuery('some_selector') method will retrieve an array of objects, no matter how many items exists with that selector. In your case you should use something like this: jQuery('#slider.navigation a.selected')[0].id; ^^ (you mis

[jQuery] Re: Do you figure out how to do this?

2009-03-20 Thread Marco Elisio Oliveira Jardim
You need a JSONP callback for this: http://docs.jquery.com/Getjson But the other web app must support it... _ Lois Griffin: I’m a naughty girl and I need a spanking! Peter Griffin: And I'm a paladin with 18 charisma and 97 hit-points, I can use my helm of disinte

[jQuery] Re: submenu position: left or right

2008-12-01 Thread marco
i renewal my question.

[jQuery] [superfish] submenu position: left or right

2008-11-28 Thread marco
hi! i got a menu with many nested sub-menus. some sub-menus get out of the page width because they are all open on the right of the parent. can superfish open menus on the left if there is not enough space on the right? thanks marco

[jQuery] Re: updated variable not pass to remote method

2008-07-07 Thread Marco
Hi, I found this solution: var token = 'somerandomstring'; $(".myform").validate({ submitHandler: function(form) { ris = checkCaptcha(); if( ris == 1 ) { form.submit(); } else { var validator = $(".myform").validate()

[jQuery] [validate] updated variable not pass to remote method

2008-07-06 Thread Marco
Hi, I use captcha to prevent spam in this way (token is a random string needed to validate user input field) var token = 'somerandomstring'; $(".myform").validate({ rules: { captcha: { required: true,

[jQuery] Re: Validate + Captcha + Remote

2008-07-04 Thread Marco
up

[jQuery] Validate + Captcha + Remote

2008-07-03 Thread Marco
Hi, I use captcha to prevent spam in this way (token is a random string needed to validate user input field) var token = 'somerandomstring'; $(".myform").validate({ rules: { captcha: { required: true,

[jQuery] Re: [OT] twitter

2008-05-21 Thread marco
I'm also using Digsby since a few months and it's really a great software. My only wish is that it would be more open to let people create plugins themselves On May 21, 8:42 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > just found out digsby can be a twitter client. Great! Digsby manage

[jQuery] Get body from an XHTML document loaded using an HTTP request

2008-05-06 Thread Marco
Hi! This code seems not to work: $.get(pag, function (data) { alert( $("body", data).html() ); }); Could someone Please help me? The page I am trying to manipulating is the following: = http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";> http://www.w

[jQuery] Re: Rounded corners-canvas and ie6

2007-11-21 Thread marco
Yes, I ran into the same issue myself. I have not found a solution for this myself. I wonder how they did it on the demo site. (there the issue does not appear) marco On Nov 21, 1:00 pm, polyrhythmic <[EMAIL PROTECTED]> wrote: > I believe curvycorners supports borders, I'm not sur