Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-13 Thread Rafael Santos
/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sá :: webdeveloper www.rafael-santos.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Some jQuery tips and tricks

2007-02-13 Thread Rafael Santos
here: http://dmitriid.com/jquery/en/ I hope to add more examples with time. Hopefully, this will be helpful to at least someone :) ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sá :: webdeveloper www.rafael

Re: [jQuery] AJAX and readyState == 3 HowTo?

2007-02-06 Thread Rafael Santos
: http://sanisoft.com Cheesecake-Photoblog: http://cheesecake-photoblog.org = ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sá :: webdeveloper

Re: [jQuery] Release: Treeview plugin

2007-01-25 Thread Rafael Santos
feedback is of course appreciated. -- Jörn Zaefferer http://bassistance.de ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com

[jQuery] Bug in show()?

2007-01-23 Thread Rafael Santos
:300px; Why do i become so large? /div -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Bug in show()?

2007-01-23 Thread Rafael Santos
to a specific width, other than the width defined by the stylesheet, then just use the animate method. The animate method leaves inline styles in place. .animate({ width: 300, height: 50, opacity: 100 }); .animate({ width: 0, height: 0, opacity: 0 }); -- Brandon Aaron On 1/23/07, Rafael Santos [EMAIL

Re: [jQuery] Jquery Birthday

2007-01-16 Thread Rafael Santos
. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread Rafael Santos
that make them impossible or more difficult to work with than DIV's when it comes to jQuery. Rick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com

Re: [jQuery] beautiful jquery powered website to check !

2007-01-14 Thread Rafael Santos
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com

Re: [jQuery] Any way to trigger a click by script?

2007-01-05 Thread Rafael Santos
at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Rafael Santos Sà :: webdeveloper www.rafael-santos.com ___ jQuery mailing list discuss@jquery.com http://jquery.com

[jQuery] off-topic: Happy New Year for you all

2006-12-31 Thread Rafael Santos
Hey, I wish you all we all, web fans, programmers, code line lovers like me, a really great 2007. Lets make jQuery dominates the world! lol Im doing my part, spreading the word in Brazil. (= ha, im not good with words, especially in english hehe, so watch this production:

[jQuery] tableSorter bug colspan in tfoot

2006-12-27 Thread Rafael Santos
hey, i'd like to know if i'm doing something wrong. Check this: table thead tr td1/td td2/td /tr /thead tbody tr td1/td td2/td /tr /tbody tfoot tr td colspan=2products found: #que.recordCount#/td /tr /tfoot /table When i try to sort it, firebug tells me: tbl.sorter.js (line 292) : o

[jQuery] tableSorter prevent a td to active the sorting

2006-12-27 Thread Rafael Santos
hey, How could I disable one or more td on the head when i click on it?? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] tableSorter prevent a td to active the sorting

2006-12-27 Thread Rafael Santos
includes a patch I wrote that allows you to pass a jQuery object, DOM node, or DOM node array to disableHeaders. -- Yehuda On 12/27/06, Rafael Santos [EMAIL PROTECTED] wrote: hey, How could I disable one or more td on the head when i click

Re: [jQuery] [jquery] bug? ($.post) 'null' is null or not a valid object (ie)

2006-11-25 Thread Rafael Santos
Okay, i will, i just dont know how to surf @ jquery.com/svn =( ... im so novice! =X 2006/11/25, Jörn Zaefferer [EMAIL PROTECTED]: Jörn Zaefferer schrieb: Hi Rafael! hey, this is where im getting this error. http://www.magictour.com.br/windstar/montagem.cfm (sorry but i havent got time to

[jQuery] [jquery] bug? ($.post) 'null' is null or not a valid object (ie)

2006-11-24 Thread Rafael Santos
hey, this is where im getting this error. http://www.magictour.com.br/windstar/montagem.cfm (sorry but i havent got time to make the example in another page) Steps: Choose a processor (my advice: one of the 'testes') then choose a MoBo, it should do 3 $.post(), but sometimes i get this error on

Re: [jQuery] Media plugins

2006-11-09 Thread Rafael Santos
I really appreciate it... thx man!2006/11/9, Mike Alsup [EMAIL PROTECTED]: Can it be modified to work with FLAM and WIMPY?Hi Sam,I've never used either of those but if they just use flash then Iwould think the flash plugin would work with them with little or nomodifications.

Re: [jQuery] how to stop each iteration under each's function?

2006-11-01 Thread Rafael Santos
return false... works for me =P 2006/10/31, Dave Methvin [EMAIL PROTECTED]: but 'break;' won't stop the iteration of each, what should i do?Return false inside the function and it will stop. That was added recently but the docs weren't updated to reflect

Re: [jQuery] highlight table column on hover

2006-10-30 Thread Rafael Santos
what about this:$(tr).hover(function(){ $(this}.siblings().css(backgroundColor,#eee) },function(){ $(this}.siblings().css(backgroundColor,white) } );*not tested2006/10/30, Choan C. Gálvez [EMAIL PROTECTED]: On 10/30/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: has anyone made this as (part of) a

Re: [jQuery] highlight table column on hover

2006-10-30 Thread Rafael Santos
wtf... great mistake... forget my lines =)2006/10/30, Rafael Santos [EMAIL PROTECTED]: what about this:$(tr).hover(function(){ $(this}.siblings().css(backgroundColor,#eee) },function(){ $(this}.siblings().css(backgroundColor,white) } );*not tested2006/10/30, Choan C. Gálvez [EMAIL PROTECTED

Re: [jQuery] $(.my_input).focus() shouldnt work?

2006-10-23 Thread Rafael Santos
$(#month).keypress( function(){ len = $(this).val().length; if(len 1){ document.form_register.day.focus(); } });working on IE 6... =) enough for my lazy client who doesnt even know about the existence of another browser besides IE. lol 2006/10/23, Rafael Santos [EMAIL PROTECTED]: hey guys

Re: [jQuery] A question about ajaxStart and Stop

2006-10-22 Thread Rafael Santos
$(#div_loading).ajaxStart( function){ $(this).show();});$(#div_loading).ajaxStop( function){ $(this).hide(); });i think this is it...2006/10/22, Mats Lindblad [EMAIL PROTECTED]: I have tried to get it to work and I am not sure that I am using it right so if anyone could explain to me how I am

Re: [jQuery] Image Cropping

2006-10-21 Thread Rafael Santos
i also want to find something like this, there's this new plugin the Resizeable, i just could find how to send the 4 points @ onResize. any ideas??2006/10/20, mrkris [EMAIL PROTECTED]: Hi list,New to jquery and _javascript_ in general and have to say, jquery hashelped me a lot in my projects.

[jQuery] get first and last

2006-10-17 Thread Rafael Santos
hey, I am afraid ive forgotten how to get the first and the last element of a li list inside a ul how knows?? =) ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] get first and last

2006-10-17 Thread Rafael Santos
|redmonk Original Message Subject: [jQuery]get first and last From: Rafael Santos [EMAIL PROTECTED] Date: Tue, October 17, 2006 8:28 am To: jQuery Discussion. discuss@jquery.com hey, I am afraid ive forgotten how to get the first and the last element of a li list inside a ul how

Re: [jQuery] mp3player plugin

2006-10-09 Thread Rafael Santos
pls show us the docs and the source again, i havent tagged it on delicious yet.. =)and there may have new ppl on the list who would like to have it on their gmail account.. hehehe 2006/10/9, David [EMAIL PROTECTED]: hey,I updated my mp3player plugin with an option to play a file on start upand

Re: [jQuery] Highlight fade plugin bug

2006-10-05 Thread Rafael Santos
a new packed version... Man do I feel stupid... and amazed that this wasn't caught until now... -blair Still gonna look into that table cell highlighting issue later on as well... Rafael Santos wrote: Yeah, it works on IE, but i didnt mention the real bug. This purple color is not defined.. lol 2006

[jQuery] Input text hover error

2006-10-01 Thread Rafael Santos
Hey, this is what what happensuncaught exception: Permission denied to get property HTMLDivElement.parentNodeand this is the lines. $(#searchform #s).hover(function(){ $(this).css(backgroundColor,#999).css(border,1px solid #0c9); }, function(){

Re: [jQuery] Spread jQuery Request

2006-09-28 Thread Rafael Santos
I could invite brazilians speaking portuguese on the mp3... idkloli just know 3 brazilians who know jQuery, me and my 2 friends... and that's serious...2006/9/28, Dan Atkinson [EMAIL PROTECTED]:I mean that jQuery no longer has this edge on 'competitors'. Fil wrote: Yes. I see now. Unfortunately,

[jQuery] off topic - sorry but I needed =P

2006-09-28 Thread Rafael Santos
i know i should only talk about jquery but im playing here and did it. I think it's funny for me =Ohow easy it is to make a web2.0 logo huahuahusorry guys... ah, if you want to, take it for u okay... =) http://hypestudio.net/fael/logo_web2.gif ___ jQuery

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rafael Santos
Yeah, ive done so many copy n paste that i got everything mixed huuhuuhBut could yall explain to me how to use each() to the cli nodes to work with it ?2006/9/26, Klaus Hartl [EMAIL PROTECTED]:Rafael Santos schrieb: Hey, it's my 1st time using XML so i cant manage doin this: $.post(get_cli.cfm

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rafael Santos
Thankz KlausLots of alerts showed here.. lol I didnt expect. hahaNow it's working fine =P2006/9/26, Klaus Hartl [EMAIL PROTECTED] :Rafael Santos schrieb: Yeah, ive done so many copy n paste that i got everything mixed huuhuuh But could yall explain to me how to use each() to the cli nodes

Re: [jQuery] Google map plugin idea

2006-09-21 Thread Rafael Santos
Hey Dylan... that's great... So nice what you've done...Im afraid i cant use it here in Brazil, ppl are being kidnaped by guys who get users' infos @ orkut profiles. If i create a portuguese Social Networking i'd be helping these guys... lol I'l have to way some months =(2006/9/21, Dylan Verheul

[jQuery] [jquery] g has no properties

2006-09-16 Thread Rafael Santos
Here are the lines.after I move the cursor out of a i get the error: g has no properties$(document).ready( function(){ $(#menu li a).hover( function(){ $(this).parent().background(red); }); //$(#menu li a).mouseout( function(){ $(this).parent().background(black); });});//im using $Date:

Re: [jQuery] [jquery] g has no properties

2006-09-16 Thread Rafael Santos
luv ya =)2006/9/16, Matt Stith [EMAIL PROTECTED]: .hover(1,2) is the same thing as.hover(1).mouseout(2)the 2nd argument of hover is what to do on mouseOut. If you still dont want that, then you could just do this.hover(function(){//do stuff },function(){});On 9/16/06, Klaus Hartl [EMAIL

Re: [jQuery] Why I love jQuery...

2006-09-08 Thread Rafael Santos
where do i get pause plugin?2006/9/8, Klaus Hartl [EMAIL PROTECTED]: $('pstrongNo imagesfound./strong/p').appendTo('#msg').pause(3000,'fx').fadeOut('normal', function() { $(this).remove() } );Do I need to say more?PS: Ah yes, thanks for the pause plugin, Jonathan! --

[jQuery] $.posting Array of Checkboxes

2006-09-06 Thread Rafael Santos
Hey... im trying to post via ajax an array of checkboxes with the same id..if i do:$(.btn).click( function(){ $.post(request.cfm,{ valor: $(#checkboxes).value }, function(){ //any callback }});on firebug i see the posting is only sending the 1st value of 4 #checkboxes in the form...Any one knows

Re: [jQuery] $.posting Array of Checkboxes

2006-09-06 Thread Rafael Santos
yeah... but the checkboxes are created dinamically... so i can have one checkbox or 20 checkboxes, how do i post these ones??2006/9/6, Marc Jansen [EMAIL PROTECTED]:Rafael Santos schrieb: Hey... im trying to post via ajax an array of checkboxes with the same id.. if i do: $(.btn).click( function

Re: [jQuery] Compilation of jQuery add-ons

2006-09-03 Thread Rafael Santos
hmm... ive tagged some samples, demos, etc ... all jquery relatedhttp://del.icio.us/shanex/jquery =)2006/9/3, Sam [EMAIL PROTECTED]:Is there a list of available 3rd party add-ons (e.g., behaviors, carousel, etc...) built on jQuery? Sam___jQuery mailing

[jQuery] no action after $.load.. why?

2006-09-02 Thread Rafael Santos
Hey, i'd like to know why it happens..The code:$(document).ready( function(){ $(#main).load(get_calcform.php,{ idref: iditem }, function(txt){ $(#main).html(txt); } );$(#calculate).click( function(){ alert('hi'); });//output - form method=post//some inputsinput type='button' value='calculate'

Re: [jQuery] no action after $.load.. why?

2006-09-02 Thread Rafael Santos
Thanks you two... How silly was i... lol2006/9/3, John Resig [EMAIL PROTECTED]: The code: $(document).ready( function(){ $(#main).load(get_calcform.php,{ idref: iditem }, function(txt){ $(#main).html(txt); } ); $(#calculate).click( function(){alert('hi');});The problem is that you're binding the

[jQuery] Any mirror to jquery1.0

2006-08-29 Thread Rafael Santos
Hey, i just read its been released jquery.com is offline for me here... can anyone show me mirrors to get it...thx ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Rafael Santos
Hey, i couldnt find the owner of that autocomplete hosted in dyve.net...The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he may read it in this discussion...Thx ___ jQuery mailing list

Re: [jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Rafael Santos
I posted about it yesterday... it isnt working, but the jquery released in May works fine...//both packed versions...2006/8/29, Yehuda Katz [EMAIL PROTECTED] :Can't be. Visual jQuery uses rounded corners, and it works fine. On 8/28/06, Jason Huck [EMAIL PROTECTED] wrote: Dave Methvin's rounded

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread Rafael Santos
I like that what about doing a next|previous button...Look: the user could change the songs... i tried it before, but i didnt manage stopping the sound when i remove it...Lets try? =P 2006/8/29, Andy Matthews [EMAIL PROTECTED]: It never worked for me. IE 6+ for the