[jQuery] Re: :contains - a bit more specific?

2007-06-11 Thread Jean Nascimento
and that way? $("div.commentfooter > span").contains('test').append('class'); On 6/11/07, MrNase <[EMAIL PROTECTED]> wrote: I have some layers, each of this layers has a span tag with a username. Now, I want to append some code to each layer that has a span which contains 'test'. The code I t

[jQuery] Re: Why does my ajax function kill drag/drop?

2007-06-05 Thread Jean Nascimento
i think all ajax calls kill drag, i have troubles with that and a friend mine too On 6/4/07, dennis <[EMAIL PROTECTED]> wrote: I have Interface 1.2 Drag/Drop working. I can drag images (hardcoded) from div id=theSearchResultImages to my dropable area just fine. But when I try to add my ajax

[jQuery] Re: $().load() not working in Opera?

2007-06-01 Thread Jean Nascimento
AIL PROTECTED]> wrote: On 30 Maj, 16:26, "Jean Nascimento" <[EMAIL PROTECTED]> wrote: > but u can do better with the design no? =P > and what is wrong with it? :) -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Using close images

2007-05-30 Thread Jean Nascimento
hat starts with "fechar". --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 30, 2007, at 10:22 AM, Jean Nascimento wrote: I´m trying do that $("[EMAIL PROTECTED]").click(function() { alert('u can do it!'); $(this).parent("

[jQuery] Re: Using close images

2007-05-30 Thread Jean Nascimento
switching the "=" and the "^" around. So, the selector expression should look like this: $('[EMAIL PROTECTED]') That is, if you selecting all images that have a id that starts with "fechar". --Karl _ Karl Swedberg www.englishrules.com www.learni

[jQuery] Using close images

2007-05-30 Thread Jean Nascimento
I´m trying do that $("[EMAIL PROTECTED]").click(function() { alert('u can do it!'); $(this).parent("div").hide(); }); fechar = close Even with a alert do nothing, where is wrong?? -- []´s Jean www.suissa.info Ether

[jQuery] Re: $().load() not working in Opera?

2007-05-30 Thread Jean Nascimento
Here is working, but u can do better with the design no? =P On 5/30/07, warlock24 <[EMAIL PROTECTED]> wrote: Could someone could tell me why my page menu (http:// warlock24.googlepages.com/index.html#) not working in Opera? I use $ ().load() to load subpages into DIV. :( -- []´s Jean w

[jQuery] Re: Autocomplete error

2007-05-28 Thread Jean Nascimento
sorry for my ignorance i test quickly in my job. me and my stupidies On 5/28/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Diego A. wrote: > Sounds like you haven't included the dimensions plugin. > http://www.google.co.uk/search?sourceid=navclient-ff&ie=UTF-8&rls=GGGL,GGGL:2006-14,GGGL:en&q

[jQuery] Autocomplete error

2007-05-28 Thread Jean Nascimento
Anyone have problems with the autocomplete plugin from bassistance? jQuery(input).offset is not a function [Break on this error] var offset = jQuery(input).offset({scroll: false, border: false}); In this line: var offset = jQuery(input).offset({scroll: false, border: false}); After the firs

[jQuery] Re: Jorn Form Validation help - how to know when a select field is selected

2007-05-28 Thread Jean Nascimento
input:selected is the pseudo class for this ;D and input:checked is for the radio box On 5/28/07, Web Specialist <[EMAIL PROTECTED]> wrote: Hi all I have a dependent validation routine with Jorn Validation Form plugin. Works like a charm. But I need to validate dependent fields when a select

[jQuery] Problem with maskedinput + load

2007-05-28 Thread Jean Nascimento
I´m passing a input value with load function and this ionput with mask dont send any value but without works normal, who know why?? and i already tried with #id of input //mask na consulta de os $("#os_id").maskedinput("", " "); //consulta OS $

[jQuery] Re: function are getting called twice

2007-05-28 Thread Jean Nascimento
i dont have problems with that, how u call the website2?? Try dont use the same id for the elements or something like that. On 5/28/07, bingo <[EMAIL PROTECTED]> wrote: hi.. I tried some debugging and found that IE7 is not having any problem with it..the problem is with firefoxthis defini

[jQuery] Re: CSS3 support

2007-05-28 Thread Jean Nascimento
I thinks is only the selectors by now, couze want the jquery implement CSS3 declarations if the browsers dont support?? On 5/28/07, pd <[EMAIL PROTECTED]> wrote: Hi All I know I'm dreaming and it's probably not realistic but on the front of the jQuery site is the following proclamation: "CS

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Jean Nascimento
hide(); $("#content").show(); }); Tkz dude! On 5/25/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: Owww pretty good! Thanks. Now I begin to undertand the things what can we do for the poor people who disable js huauhahuahuhuahua On 5/25/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]&

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Jean Nascimento
gt; How about: > > > > My page > > document.write("<style type='text/css'>#content { display: none } > #loading { display: block } <\/style>"); > $( function() { > $("#loading").hide(); > $("#content").show();

[jQuery] Re: Auto-focus next box

2007-05-25 Thread Jean Nascimento
if u change all the ids for 1 class isnt better?? On 5/25/07, Michael Price <[EMAIL PROTECTED]> wrote: Michael Price wrote: > I've got five text boxes representing the four (or five for longer ones) > parts of a credit card number. They all follow one another in the DOM > without any other ele

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Jean Nascimento
In really this is an example for future use, couse now the page of report i´m loading by .load function wich put the entire page so i dont need to this technique for now =p On 5/25/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: I thin i dont understand, i want to show only when the bo

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Jean Nascimento
nction. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jean Nascimento Sent: vendredi 25 mai 2007 8:20 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Loading before teh DOM is ready Thankss! I used this for test =D My page #c

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Jean Nascimento
am Collett <[EMAIL PROTECTED]> wrote: How about: My page document.write("<style type='text/css'>#content { display: none } #loading { display: block } <\/style>"); $( function() { $("#loading").hide(); $("#content").show(); }); L

[jQuery] Re: Finding a parent list item.

2007-05-25 Thread Jean Nascimento
i think is that $(function() { $("fieldset").find("input,select,textarea,option").focus (function() { this.parent().addClass("on"); } ) .blur (function() { this.parent().removeClass();

[jQuery] Re: Keypress on a div

2007-05-24 Thread Jean Nascimento
't know about that. Again, this is mainly my opinion and shouldn't be interpreted as any kind of official statement from the jQuery dev team. --Erik On 5/24/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: > > But which is better and faster? bind or the click,mouseover, etc &

[jQuery] Re: Blur event

2007-05-24 Thread Jean Nascimento
Oww understood really the jQuery bring us some hope with js LOL after i thinked this is thing of Devil but now i know the IE is the HELL 4 us On 5/24/07, Glen Lipka <[EMAIL PROTECTED]> wrote: A closure! Actually, I don't even know what the heck a closure is. I mean, I understand intellectual

[jQuery] Re: Loading before teh DOM is ready

2007-05-24 Thread Jean Nascimento
some like that? script language="JavaScript" type="text/javascript"> $("body").hide(); $("#loading").show(); $(document).ready( function() { $("#loading").hide(); $(".calendario").datePicker(

[jQuery] Re: Blur event

2007-05-24 Thread Jean Nascimento
This is for what?? U wanna set the input always with focus??? On 5/24/07, Karl Rudd <[EMAIL PROTECTED]> wrote: If you're wanting the text field to retain focus no matter what then you should probably reconsider. It's not a very good thing from a UI design perspective. It is possible but it pre

[jQuery] Re: Weirdness in IE

2007-05-24 Thread Jean Nascimento
try u use append? On 5/24/07, Joel Taylor <[EMAIL PROTECTED]> wrote: nope, that didnt help either (seriously, I'm not normally that sloppy with my code!) - I changed it back to the original, see what it does now. On 5/24/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > > $(document).ready(fu

[jQuery] Re: Performance tip

2007-05-24 Thread Jean Nascimento
alling inside loops is something that any programmer in any language should look at and immediately say "Yuck!" :-D --rob On 5/24/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: > > I´m a javascript nooba, so thanks for the tip :D > > On 5/23/07, Gordon <[EMAIL PROTECTE

[jQuery] Re: Keypress on a div

2007-05-24 Thread Jean Nascimento
But which is better and faster? bind or the click,mouseover, etc On 5/24/07, Erik Beeson <[EMAIL PROTECTED]> wrote: Because the API for it is more consistent. Functionally it's the same as what you had. --Erik On 5/24/07, zio budda < [EMAIL PROTECTED]> wrote: > bind. Why bind ? > > M. > --

[jQuery] Loading before teh DOM is ready

2007-05-24 Thread Jean Nascimento
I´ve tried add some code before the $(document).ready but its dont work, so i wanna know how the best way to show some Loading div before all docuemnt be ready? -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Creating DIV with JEditable Callback Function

2007-05-23 Thread Jean Nascimento
dont work?? On 5/23/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: $(document).ready(function(){ $(".editemail").editable("save1.php", { cancel: 'Cancel', submit: 'Submit&#x

[jQuery] Re: Creating DIV with JEditable Callback Function

2007-05-23 Thread Jean Nascimento
$(document).ready(function(){ $(".editemail").editable("save1.php", { cancel: 'Cancel', submit: 'Submit' }); var newDivz = mama papa $(".addemail").editable("save2.php", { cancel

[jQuery] Re: improve my working code

2007-05-23 Thread Jean Nascimento
How he said is the better way, i think $(".classLink").click( function(){ $(".classDetail").slideToggle("slow"); return false; }); On 5/23/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: On 5/23/07, tlob <[EMAIL PROTECTED]>

[jQuery] Re: Performance tip

2007-05-23 Thread Jean Nascimento
I´m a javascript nooba, so thanks for the tip :D On 5/23/07, Gordon <[EMAIL PROTECTED]> wrote: It is one of those blindingly obvious things but also easy to forget. I suppose the tip should be "if you find $ in a loop, find a way to cache it". On May 23, 4:43 pm, "Rob Desbois" <[EMAIL PROTECT

[jQuery] Re: NEWS: 217 Sites Using jQuery and Growing

2007-05-23 Thread Jean Nascimento
I´m using in 2 projects(intranet) mine, the other are stoped now, but when i returne to them i will pass all to jQuery \o/ On 5/23/07, Rey Bango <[EMAIL PROTECTED]> wrote: I just wanted to let everyone know that the list of sites continues to grow. We are currently at 217 sites (that we know

[jQuery] Re: [ANN] jQuery Media Plugin

2007-05-23 Thread Jean Nascimento
We all love the jQuery and yours plugins \o/ greate job! On 5/23/07, Mike Alsup <[EMAIL PROTECTED]> wrote: @Dan: That's a very good idea. Thanks for the suggestion! @Alexandre: The plugin adds codebase and pluginspage attrs to the object/embed elements so I think that's covered. @Rob: I'm

[jQuery] Re: Switching params in $.post()

2007-05-23 Thread Jean Nascimento
How can i send ISO charset with .post function this is making me crazy On 5/23/07, Tom McGuire <[EMAIL PROTECTED]> wrote: Awesome. Thanks! I'm just a JS newb in general, and it's good to see people actually help us newbies out. ~ Tom On May 23, 11:52 am, "Daniel Hollocher" <[EMAIL PROTECTE

[jQuery] Like Google Calendar

2007-05-23 Thread Jean Nascimento
I have to made a Calendar for my sys and wanna make some like the Google Calendar but my real doubt is How the best way to make the cells (days/events) div in a tables? divs with display: table-cell ?? I wanna know the best way to do this with a rounded box in background =D ps: the rounded box i

[jQuery] Re: rounded-corners in images (photos) ?

2007-05-23 Thread Jean Nascimento
For that u can apply the PNG OVERLAY tech u make a corner border with inside invisible and put this above the img =D On 5/23/07, paul wisehart <[EMAIL PROTECTED]> wrote: Hi, Anybody know a good way in jQuery to round the corners of photo images? thanks for any pointers, paul w -- []´s

[jQuery] Re: alerting the value of radio button onfocus

2007-05-22 Thread Jean Nascimento
or u can use .val() On 5/22/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: stef wrote: > that's what im trying to do - when a radio button is clicked, show its > value. How about this: $("input:radio").focus( function() { alert(this.value); }); -- Jörn Zaefferer http://bassistance.d

[jQuery] Re: Shortest Selector

2007-05-22 Thread Jean Nascimento
i want to lnow too, and including a question How can I remove the TR who includes the finded element? On 5/22/07, Glen Lipka <[EMAIL PROTECTED]> wrote: ONE TWO What is the shortest Selector to find the DIV if one starts with A (this) This is the best I got, but

[jQuery] Re: The best practice to do this

2007-05-22 Thread Jean Nascimento
n that dont break the line =p On 5/22/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: $("#mytext").keyup would be called for every character entered... if they hit a return (or enter or tab) you could insert an · Is that what you want?? On 5/22/07, Jean Nascimento <[EMAI

[jQuery] Re: The best practice to do this

2007-05-22 Thread Jean Nascimento
uot;"); $(this).val(""); }); Works in Firefox. - jake On 5/21/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: > > Tkz for the tips but using jQuery it will show ??? > > On 5/21/07, Jake McGraw <[EMAIL PROTECTED]> wrote: > > Jean: > > &g

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-21 Thread Jean Nascimento
Exactly dont reply this spamers i was affraid to mark spam and the all list beeing marked On 5/21/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: I agree with Jake, but we need not reply to those spam mails because I have found that those people who reply get lumped into the spam filter and get

[jQuery] Re: The best practice to do this

2007-05-21 Thread Jean Nascimento
/20/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: > > How i make a list in a textarea? My ideia is do a script to when the > user press ENTER in ah description textarea, this event create another > row list. For my textarea look like some to do list. > > Thanks for the

[jQuery] Problems with load function

2007-05-21 Thread Jean Nascimento
When i´m load a page some events dont work like when i´m using tableFilter the css dont work, but in the page works great when i´m using auto(filter) Hover for close images it´s dont hover, but in the page works =/ Exist some special request to this works?? code from 1 load $("#Listar").click(f

[jQuery] How do this?

2007-05-21 Thread Jean Nascimento
I want to exibe a loading animation before my site load full, but we only use the functions of jQuery when the DOM is ready, exist another method to do this?? Remeber its before the document.ready -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
the event handler to execute 2, 3, 4, 5... etc times instead of only once. Thanks again folks! =) On May 20, 6:25 pm, "Jean Nascimento" <[EMAIL PROTECTED]> wrote: > with this changes works > > $('body').unbind('click').click(function(

[jQuery] Re: Color Label on Form Validation Error

2007-05-20 Thread Jean Nascimento
and if he find for error class and subistitute the label class for some label_error_class ??? On 5/20/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Emil Ivanov wrote: > Using the errorPlacement event/callback you can place the label > whereever you want. It's automatically generated with cla

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
with this changes works $('body').unbind('click').click(function(event) { if($(event.target).is('#test')) { alert("Returning.."); return true; } // Do whatever here. alert("Would perform some action.");

[jQuery] What is the difference?

2007-05-20 Thread Jean Nascimento
What is the difference to do .click(function(){ // }) or .bind("click",function(){ // })? is someone faster? secure? i always use click() is the right?? -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
I need to study more about the parameters of Jquery, i dont know the most LOL On 5/20/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: I would just check the event.target to see if it originated from the image. $('body').bind('click', function() { if ( $(event.target).is('#someId') ) return;

[jQuery] The best practice to do this

2007-05-20 Thread Jean Nascimento
How i make a list in a textarea? My ideia is do a script to when the user press ENTER in ah description textarea, this event create another row list. For my textarea look like some to do list. Thanks for the ideas ;D -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
ou provided also did not work. IE throws an error "object does not support this property or method." On May 20, 5:21 pm, "Jean Nascimento" <[EMAIL PROTECTED]> wrote: > $('body').not('#someid').unbind('click').click(function() { /* code >

[jQuery] Re: Radio button .click() difficulty

2007-05-20 Thread Jean Nascimento
Your test page is off put your code here please, only jquery code ;D On 5/18/07, SamCKayak <[EMAIL PROTECTED]> wrote: Here's a prototype of a quiz form... http://trainthetrainers.net/test.htm I've run into a problem with the .check() function with radio buttons... On all the quiz choices,

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
i can test *I want to say YOU can test =p On 5/20/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: $('body').not('#someid').unbind('click').click(function() { /* code */ }); with this u remove the #someid from all body elements so this unbind not work

[jQuery] Re: Binding a click event

2007-05-20 Thread Jean Nascimento
$('body').not('#someid').unbind('click').click(function() { /* code */ }); with this u remove the #someid from all body elements so this unbind not work i can test $('body').children().is('#someid').unbind('click').click(function() { /* code */ }); if the unbind().click() sequence works, u c

[jQuery] Re: consume click event

2007-05-20 Thread Jean Nascimento
But if u only want to collapse and expand, why dont use u the toggle function? (sorry for my poor english) On 5/19/07, oscar esp <[EMAIL PROTECTED]> wrote: I need to change click event for "each click" I have nex code: function collapseSection(ID_SECCION) { jQuery("#HS_"+ID_SECCION)

[jQuery] Re: datePicker v2: setStartDate() is not a function?

2007-05-18 Thread Jean Nascimento
Even pass in parameters is right =/ i´m with same problem for that i still have the old version lol On 5/18/07, Chris W. Parker <[EMAIL PROTECTED]> wrote: Hello, I'm trying to implement datePicker v2 but Firebug says "$('#date').setStartDate is not a function". I must be missing something sim