[jQuery] Re: Still im looking for help

2007-05-30 Thread Sebastián V . Würtz
And posible solution? thx - Original Message - From: Jonathan Sharp To: jquery-en@googlegroups.com Sent: Wednesday, May 30, 2007 2:23 PM Subject: [jQuery] Re: Still im looking for help validate.js is being included via AJAX and not loaded in time for the document.ready(() cal

[jQuery] Re: LiteBox in jQuery

2007-05-30 Thread Glen Lipka
Is it possible for thickbox to be made to do this? That would be the best of all worlds I think. Glen On 5/30/07, Rhapidophyllum <[EMAIL PROTECTED]> wrote: ImageBox looks nice. Does anyone know if it is being actively taken care of? The source code said it was written in 2006, and under Mac

[jQuery] Re: LiteBox in jQuery

2007-05-30 Thread Rey Bango
I asked Cody and he had no interest in doing it. Rey... Glen Lipka wrote: Is it possible for thickbox to be made to do this? That would be the best of all worlds I think. Glen On 5/30/07, *Rhapidophyllum* < [EMAIL PROTECTED] > wrote: ImageBox looks nice. Doe

[jQuery] Re: Widgetbox variables, problems with $()

2007-05-30 Thread MrNase
As I see now, the problem still exists. jQuery doesn't know what to do with -> var userlanguage = ${config.userlanguage}; I would need to tell jQuery that ${config.userlanguage} has nothing to do with jQuery. :-( ---dominik On 30 Mai, 23:08, MrNase <[EMAIL PROTECTED]> wrote: > > var $j

[jQuery] Re: good show/hide icon

2007-05-30 Thread SamCKayak
Silk is a great deal, great looking, almost 1,000 icons. I don't see a show / hide tho... IconBuffet looks like it could be the deal. I've signed in as SamCKayak there... Sam

[jQuery] Re: good show/hide icon

2007-05-30 Thread Matt Stith
You could use the icons 'add.png' and 'delete.png' for hide/show maybe? Anyways, just add me as a friend on IB (im seventoes), and comment on my page for any icons you want, i have tons of stamps so i can send you anything. On 5/30/07, SamCKayak <[EMAIL PROTECTED]> wrote: Silk is a great deal

[jQuery] Re: LiteBox in jQuery

2007-05-30 Thread Glen Lipka
Ok, so we are back where we started. Well, I guess I will start with that sample site and update the libraries and see what it looks like. Ill see if there is anything I can do with Mac Firefox. Glen On 5/30/07, Rey Bango <[EMAIL PROTECTED]> wrote: I asked Cody and he had no interest in doi

[jQuery] function on element printed by another function

2007-05-30 Thread Darrarski
I trying to do something like this: $("#one").click( function() { $("#frame").html( "Printed Element" ); } ); $("#two").click( function() { alert("Hello!"); } ); Click me Empty when I click on the #one, #two is printed in #frame, but there is no response when clicking #two How can I dec

[jQuery] Re: function on element printed by another function

2007-05-30 Thread Benjamin Sterling
Do: $("#one").click( function() { $("#frame").html( "Printed Element" ); $("#two").click( function() { alert("Hello!"); } ); } ); On 5/30/07, Darrarski <[EMAIL PROTECTED]> wrote: I trying to do something like this: $("#one").click( function() { $("#frame").html( "Printed Element" ); }

[jQuery] Determining show / hide state

2007-05-30 Thread SamCKayak
Does jQuery .show() and .hide() set a flag anywhere on an object to indicate if it was last show()n or hide()n? Sam

[jQuery] extra parameter at the end of .click() in older code

2007-05-30 Thread Geoffrey Knutzen
I am using some code written a few months ago by another developer. It is in this form: $('#someId').click(function () { /*do some stuff here*/ }, false); What is the purpose of the "false" attribute after the function? Is that some sort of deprecated functionality or just a mistake? Thanks

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Ⓙⓐⓚⓔ
.is(":hidden") On 5/30/07, SamCKayak <[EMAIL PROTECTED]> wrote: Does jQuery .show() and .hide() set a flag anywhere on an object to indicate if it was last show()n or hide()n? Sam -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Matt Stith
Yeah, you can select only hidden or visible objects by using $("#selector:visible") or $("#selector:hidden") easy as jCake ;) On 5/30/07, SamCKayak <[EMAIL PROTECTED]> wrote: Does jQuery .show() and .hide() set a flag anywhere on an object to indicate if it was last show()n or hide()n? Sam

[jQuery] Re: Widgetbox variables, problems with $()

2007-05-30 Thread Brandon Aaron
That is what the jQuery.noConflict() is for. :) Just do this: var $j = jQuery.noConflict(); -- Brandon Aaron On 5/30/07, MrNase <[EMAIL PROTECTED]> wrote: As I see now, the problem still exists. jQuery doesn't know what to do with -> var userlanguage = ${config.userlanguage}; I would ne

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Geoffrey Knutzen
Wow, .is saves the day again. That little guy always gets me. http://docs.jquery.com/DOM/Traversing#is.28_expr_.29 Is there a more extensive list of what could be done with .is? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: Wednesday, May 30, 2007

[jQuery] Re: good show/hide icon

2007-05-30 Thread Glen Lipka
I have been using iconexperience for some stuff. Hige collection, well done stuff, but is very popular, so it's not "unique". But the answer to your question depends totally on your existing design. Show a jpeg of where it will go, and I can make a suggestion. In terms of how they are shaped, u

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Ⓙⓐⓚⓔ
is is anything and everything! all jQuery selectors work. On 5/30/07, Geoffrey Knutzen <[EMAIL PROTECTED]> wrote: Wow, .is saves the day again. That little guy always gets me. http://docs.jquery.com/DOM/Traversing#is.28_expr_.29 Is there a more extensive list of what could be done with .is?

[jQuery] Re: LiteBox in jQuery

2007-05-30 Thread Karl Swedberg
Hey Glen, did you try pulling the litebox code and demo page and running it with a more recent version of jquery.js? That Mac Firefox flicker looks familiar, and I think it was taken care of in an svn release within the last couple months. --Karl _ Karl Swedberg www.engli

[jQuery] Events firing twice

2007-05-30 Thread brandags
Maybe I'm not understanding binding correctly, but when I select a different item from the list below, the change() event fires twice. Why is it doing this? Testing1 Testing2 Testing3 // jquery $('#testselect').change(function(){ alert("I am showing alerting twi

[jQuery] Re: function are getting called twice

2007-05-30 Thread brandags
I'm having the exact same problem. I section of the page is loaded dynamically via ajax, and it contains the following: $(document).ready(function(){ $('#btntest').click(function(){ alert("HEY"); }); }); And when you click the button, "HEY" is alerted twice! Th

[jQuery] Re: function are getting called twice

2007-05-30 Thread bingo
Hi brandags, I eventually ended up check for browsers and initializing scripts only if it IE. For me, IE7 works well and as desired and the problem is with firefox. bingo On May 30, 3:47 pm, brandags <[EMAIL PROTECTED]> wrote: > I'm having the exact same problem. > I section of the page is lo

[jQuery] .ready and javascript library loading

2007-05-30 Thread DaveG
Does $(document).ready ensure that all javascript libraries are loaded in addition to the DOM being ready? I have a case on a very slow network connection, where a call to a library function is made seemingly before the library is loaded. ~ ~ Dave

[jQuery] Re: Events firing twice

2007-05-30 Thread Sean Catchpole
I think that some other code might be creating this problem. Do you have an example page of this happening? ~Sean

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-30 Thread Brandon Aaron
I've added a new patch to the ticket based on Volker's patch. Can you please confirm that it does indeed fix the problem? http://dev.jquery.com/ticket/1143 -- Brandon Aaron On 5/24/07, Jean-Francois Hovinne <[EMAIL PROTECTED]> wrote: Thanks for your quick reply, John, and sorry for annoying y

[jQuery] Re: Events firing twice

2007-05-30 Thread Mike Chabot
Create an HTML page that has nothing but the most basic form with your code and see if the problem still occurs. Your sample code looks fine. -Mike Chabot On 5/30/07, brandags <[EMAIL PROTECTED]> wrote: Maybe I'm not understanding binding correctly, but when I select a different item from the

[jQuery] Re: .ready and javascript library loading

2007-05-30 Thread Karl Rudd
Script tags are run (though not necessarily "downloaded") sequentially. So as long as the script tag for the "library" is before the call to the function in the "library" you shouldn't have any problems. For example, the following works: