[jQuery] [BUG?] Ie8 span.show() on a.hover()

2009-10-11 Thread Alessandro
Hi, i'm trying to make a div showing when user moves mouse over a link, so html is this: news provanews provanews provanews

[jQuery] jqTransform + validate bassistance plugin

2009-09-25 Thread Alessandro Cimoli
Hi, i've a problem with input radio validation. I've two radio (accept and don't accept) for the privacy and obviously the users have to click "accept". Here my code: $("#formContactPage").validate({ errorLabelContainer: $("p.error"), rules: { d

[jQuery] Equivalent in jQuery to Dojo's dojox.layout.ContentPane

2009-02-03 Thread Alessandro Vernet
I am looking for an equivalent in jQuery, if there is one, to Dojo's dojox.layout.ContentPane, which in essence provides a way to replace the content of a div with the a web page loaded from the client. Some of the difficulty comes from supporting JavaScript and CSS used by the page which is inc

[jQuery] Re: accessing the content of iframe

2008-06-13 Thread Alessandro Feijó
I'm trying to access content of a external frame, a page loaded from another server it seams impossible, when I try with local page, it works Is that so? Some kind of protection? thanks Feijó smoothcriminal escreveu: You can use it using the function contents() . For example if you want

[jQuery] Re: toggle function on checkbox

2008-01-08 Thread Alessandro Feijó
Why dont you use .click trigger? Something like $("#precheck").click( function () { $(".preregbox").toggle('slow'); }, ); On Jan 8, 2008 4:05 PM, jpl80 <[EMAIL PROTECTED]> wrote: > > > I'm having a problem with tog

[jQuery] Working with cluetip and validate

2007-11-19 Thread Alessandro Feijó
I just set a form using both plugins (jquery.validate.js and jquery.cluetip.js) Both use Title to set his content. So, a natural conflit is heppening. The cluetip title (before the pipe) its been the actualy content of validate red warning string. How can I circunvent that? If I can give a su

[jQuery] Checkboxes and radios

2007-10-25 Thread Alessandro Feijó
I'm trying to control N checkboxes, when one is selected or unselected, I need to enable/disable a radio next to the checkbox something like this: ( ) [ ] (o) [x] the marked one, turn the radio clickable I start this code $('.form-checkbox').each( function() { $('.form-checkbox:radio').

[jQuery] disable effect in images

2007-10-19 Thread Alessandro Feijó
Its possible to turn any image to gray simulating a disabled effect?? I'm trying to find it out but don't know what are the keywords to search for Thanks! -- huge hug Feijó

[jQuery] Re: show fails in Konqueror with jQuery 1.1.2

2007-05-23 Thread Alessandro Portale
rty. Somehow, the failing fadeout also prevents the resizing (maybe due to a JavaScript runtime error?). Alessandro On May 21, 1:42 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > The show method completely fails in Konqueror.

[jQuery] Re: Alternative way of reacting to clicked link?

2007-04-24 Thread Alessandro Portale
gards, Alessandro On Apr 24, 4:02 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > I think this is possible (never done it myself). > 1. Bind a single click event to the entire document. > 2. use event.target (sourceElement) to access the element that > triggered the event. >

[jQuery] Re: Alternative way of reacting to clicked link?

2007-04-24 Thread Alessandro Portale
Thank You, Juha and Diego! Your suggestions work very well for me. I wasn't aware of the nice and useful information that I can get out if the event (.target). Now, it seems much faster, and I will test it on different OSes/Browsers. Best regards, Alessandro On Apr 24, 2:09 pm, "

[jQuery] Re: Alternative way of reacting to clicked link?

2007-04-24 Thread Alessandro Portale
the #name??? then you would only have > to bind 1/26 of them at a time. Alessandro

[jQuery] Re: Alternative way of reacting to clicked link?

2007-04-23 Thread Alessandro Portale
://doc.trolltech.com/4.3-snapshot/qwidget.html). Splitting up at least the first page and fixing the HTML will be done soon. But for now, I need to handle those pages. Alessandro

[jQuery] Alternative way of reacting to clicked link?

2007-04-23 Thread Alessandro Portale
on-the-fly reacting to a link click which allows to access the new url? Thanks in advance, Alessandro