[jQuery] unsub

2009-12-08 Thread Lucas Deaver
I need to unsubscribe from your incessant emails but you put no link in the email for this. It is common practice since the stone age of emails to do that, you are very frustrating to work with and I don't like you now. PLEASE UNSUBSCRIBE ME!!

[jQuery] hoverintent - IE jumps expanded text 1px

2009-10-28 Thread Lucas
Got a new menu going with superfish and hoverintent and all looking good (not uploaded yet). Works fine with firefox, safari and chrome and surprise surprise having a small issue with IE. It is a small issue and hoping it is a recognised problem so will hold off uploading code examples...using

[jQuery] superfish and hoverintent IE issue

2009-10-22 Thread Lucas
Got a new menu going with superfish and hoverintent and all looking good (not uploaded yet). Works fine with firefox, safari and chrome and surprise surprise having a small issue with IE. It is a small issue and hoping it is a recognised problem so will hold off uploading code examples...using

[jQuery] hoverintent - IE jumps expanded text 1px

2009-10-22 Thread Lucas
Got a new menu going with superfish and hoverintent and all looking good (not uploaded yet). Works fine with firefox, safari and chrome and surprise surprise having a small issue with IE. It is a small issue and hoping it is a recognised problem so will hold off uploading code examples...using

[jQuery] Stop propagation (I think) on nested lists

2009-03-23 Thread Lucas Efe
elements from other levels. Its like the dragging event is propagating to the parent level, and so on. It works, but it looks awful. The code is here: http://pastie.org/private/xh5hvjirpigcpee7rska Any idea on how to solve this? Thanks in advance. Lucas

[jQuery] Re: Stop propagation (I think) on nested lists

2009-03-23 Thread Lucas Efe
Sorry, i solved just by updating the jquery-ui. thanks anyway. On Mar 23, 9:13 pm, Lucas Efe lucas...@gmail.com wrote: Hi everyone, I am trying to do a multi level UL /LI with the sortable component of jquery-ui. The sortable behaviour its only available while moving on the same level

[jQuery] Re: Add option to combo

2009-03-18 Thread lucas
Thanks Paul!

[jQuery] Re: Add option to combo

2009-03-17 Thread lucas
Thanks! but, prepend put the element at begining of the list in the combo, but it isn´t selected as the first option in the documentation i didn´t see nothing to put it as selected. Thanks again!

[jQuery] jQuery best practices

2008-06-18 Thread Estevão Lucas
Hi, I'd like to know if is there a document, article, or anything that a can show for the JavaScripts developers here in the company talking about best practices; Best regards

[jQuery] jQuery.extend method problems, when I update from 1.1.3 to 1.2

2008-04-29 Thread Estevão Lucas
Hi, I'm having a problem with jQuery 1.2. The problems' that i started a project using the jquery 1.1.3, but now, after 7 months, appeared the need of update to 1.2 release. Now that i'm using this version, appeared some errors, like when a use the jQuery.extend method. Error: setting a

[jQuery] Problem with jQuery's SVN Repository

2007-11-23 Thread Estevão Lucas
Hi, I would like to download the jQuery's SVN Repository with TortoiseSVN, but when i try to download the project with SVN Repository and put 'http://jqueryjs.googlecode.com/svn/trunk/ jqueryjs-read-only in URL label, this show: PROPFIND request failed on svn/trunk 403 Forbbiden. Can

[jQuery] Re: JavaScript Compressor in Rhino

2007-10-11 Thread Estevão Lucas
Can someone explain me how I can use JavaScript compactor in Rhino like in http://jqueryjs.googlecode.com/svn/trunk/jquery/build/build/ On 10 out, 17:59, Estevão Lucas [EMAIL PROTECTED] wrote: Hi I would like to know how I can use JavaScript Compressor in Rhino like jQuery' snv. Regards

[jQuery] JavaScript Compressor in Rhino

2007-10-10 Thread Estevão Lucas
Hi I would like to know how I can use JavaScript Compressor in Rhino like jQuery' snv. Regards

[jQuery] Actions without to accumulate:

2007-09-19 Thread Estevão Lucas
I've two calls to same link, first with a effect (slideToggle), and the second with a other action (toggleClass). for example $( a ).click( function() { $( div ).slideToggle(); return false; }); $( a ).click( function() { $( div ).toggleClass( active ); return

[jQuery] remove jScrollPane

2007-09-10 Thread Estevão Lucas
Hi, I've used the jScrollPane Plugin in my Intefaces, and i have a problem. Every time that I resize my window, i also resize my main div, to stay with the same page's size, but when a resize the div that contains the jScrollPane method, it doesn't fix the height. What I would like to do is

[jQuery] Disable external url with AJAX

2007-09-03 Thread Estevão Lucas
Hi, I would like to know how doesn't to allow the user to access external url with AJAX if the user edit de AJAX url Abraços Estevão Lucas

[jQuery] Re: MooTools $events expando workaround

2007-09-03 Thread Estevão Lucas
Here there is more one Brazilian in this mail-list. jQuery na veia. On 2 set, 10:03, Rey Bango [EMAIL PROTECTED] wrote: Hi Olmo, I'll add a signature from now on it seems. Thanks. That helps out quite a bit. Kind of like I did when I posted in the MooTools forum. Its always good to let

[jQuery] How do i group events?

2007-08-23 Thread Estevão Lucas
Hi, I have a 'a' element with the onclick event. I wanna use this event with another. Something like this: $( 'a' ).click( function() { // if this element already has a event this.click this.click(); $( this ).css( border, 1px solid red ); }); Estevão Lucas

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Estevão Lucas
the way that i use is: $( body ).append(div class='testDiv'/div).find( .testDiv ); Thus the created element will be returned 2007/8/20, Jay W [EMAIL PROTECTED]: With the help from a few jQuery'ers, the only way to dynamically create and append element using jQuery for multiframe application

[jQuery] Re: Seach and replace Rails template tags

2007-08-20 Thread Estevão Lucas
Hi, Rails generate the code HTML that jQuery will access it. You cannot access a Rails code because Rails run on server and JavaScript run on client-side 2007/8/20, goodieboy [EMAIL PROTECTED]: Hi, I'm trying to search through a node and find all of the Rails template tags: % and %. I'd

[jQuery] Re: Search for a parent element

2007-08-17 Thread Estevão Lucas
). What I'm searching for is something like: $([EMAIL PROTECTED]).bind(click, function(ev) { alert($(ev.srcElement).findParent([EMAIL PROTECTED]).html()); }); Michael -- Abraços Estevão Lucas

[jQuery] AJAX error in IE with jQuery 1.1.3

2007-08-16 Thread Estevão Lucas
Hi, I would like to know if somebody already had problems with IE when using the method of ajax with jQuery 1.1.3. The generated error was object does not support this property or the method and access denied and what was the solution? a hug Estevão Lucas

[jQuery] Re: question about attr()

2007-08-16 Thread Estevão Lucas
write the following code: $(td).attr(valign,top); Why not: td { vertical-align: top; } --Klaus -- Abraços Estevão Lucas