[jQuery] Re: My first tutorial: jQuery Rollovers

2007-09-27 Thread Marshall Salinger
Looking good Glen. I like the shadow text technique that you use. I first noticed it on your Intuit work that you did a while back. It's a neat trick. -Marshall Glen Lipka wrote: Started some demos, but got sleepy. :( I am halfway through a imageSprite menu. But for now, this is what I g

[jQuery] Re: My first tutorial: jQuery Rollovers

2007-09-27 Thread Glen Lipka
Started some demos, but got sleepy. :( I am halfway through a imageSprite menu. But for now, this is what I gots. http://commadot.com/jquery/hover.php Glen On 9/27/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > Consider possibly using hover: > > $("p").hover(function(){ > $(this).addClass("hover

[jQuery] Re: Problem with jQuery.unique( array )

2007-09-27 Thread Richard D. Worth
It looks like $.unique(array) is only working for arrays of objects at the moment, which does look like a bug. I've created a ticket: http://dev.jquery.com/ticket/1747 The ticket has a patch attached including unit tests and a possible fix. - Richard On 9/27/07, Sparticat <[EMAIL PROTECTED]> wr

[jQuery] Re: My first tutorial: jQuery Rollovers

2007-09-27 Thread Glen Lipka
Consider possibly using hover: $("p").hover(function(){ $(this).addClass("hover"); },function(){ $(this).removeClass("hover"); }); This could be implemented in a number of ways. I find the foreground image-sprite to be the easiest to maintain and not prone to flicker. It also allows you to

[jQuery] Re: OT Changing S=style sheet with javascript or jquery?

2007-09-27 Thread Erik Beeson
A google search for 'jQuery stylesheet switcher' turns up: http://kelvinluck.com/article/switch-stylesheets-with-jquery --Erik On 9/27/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > > http://demo.sugarondemand.com/sugarcrm_os/index.php?action=index&module=Home > > if you click on the blocks of

[jQuery] My first tutorial: jQuery Rollovers

2007-09-27 Thread AJ
Guys, I've decided to try my hand at some basic tutorials. The first is for basic reusable image rollovers for navbars, etc. You can find it here: http://www.atlantajones.com/2007/09/27/easy-reusable-image-rollovers-with-jquery/ Any comments, suggestions or tips for making it better would be mu

[jQuery] Re: jCorner problem?

2007-09-27 Thread Mike Alsup
> > Because of the nature of floats, I don't really see a universal > solution. Wrapping an element or changing its position naturally > would have a great affect on layout. I don't think this is a problem with floating the cornered div, but I suspect it is related to the markup somehow (I have

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Brandon Aaron
Its all good! :) I knew that ... no really I mean it! :p -- Brandon Aaron On 9/27/07, Michael Geary <[EMAIL PROTECTED]> wrote: > > Man, that is some goofy text formatting. I wasn't using larger type for > emphasis or to be shouting - it was just some kind of glitch that didn't > show up in the

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Michael Geary
Man, that is some goofy text formatting. I wasn't using larger type for emphasis or to be shouting - it was just some kind of glitch that didn't show up in the outgoing message. I've seen it happen before, not sure what causes it. And Brandon, I hope that message didn't come across the wrong wa

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread Michael Geary
> Michael Geary wrote: > > You're still expecting things to happen in the wrong order. > > It's *inside the callback* that the data becomes available, > > and this is long after isTracked() returns. > From: [EMAIL PROTECTED] > Yes, but I want have a function that will return what i get from > i

[jQuery] OT Changing S=style sheet with javascript or jquery?

2007-09-27 Thread Eridius
http://demo.sugarondemand.com/sugarcrm_os/index.php?action=index&module=Home if you click on the blocks of color at the top, i don't know if they are just change the css on the fly or completely loading a new css file. Is it possible to load a different css file on the fly with javascript itsel

[jQuery] Re: jCorner problem?

2007-09-27 Thread polyrhythmic
On Sep 27, 1:23 pm, Guy Fraser <[EMAIL PROTECTED]> wrote: > polyrhythmic wrote: > > I've seen that happen to me before when running .corner() on a floated > > element. Cornertries to adapt properties from its parent from > > the .cornerdivs, so if you have some css like #container div { float: >

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Michael Geary
Um, Brandon, so what you're saying is that if you comment out the "return false;" in the first example below (making it the same as cmbtrx's code), it will fail to display the alert? Let's think about this... alert() is a blocking call. It opens the alert box immediately, and the function doe

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread Erik Beeson
As I said to you offlist, it doesn't work that way. The value from $.get CAN NOT be returned from isTracked because isTracked will have returned before the $.get callback executes. Instead of: if(isTracked(code) == 'true') { // thing A } else { //thing B } You have to do: isTracked(code, fun

[jQuery] Re: jQuery 1.1.2 + jQuery carousel, help appreciated. :-)

2007-09-27 Thread Steve Finkelstein
Apologies for replying to my own thread, but I'm getting closer on the "bug", The callback function here is where the issue occurs: function mycarousel_itemLoadCallback(carousel, state) { for (var i = carousel.first; i <

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread [EMAIL PROTECTED]
Michael Geary wrote: > You're still expecting things to happen in the wrong order. It's *inside the > callback* that the data becomes available, and this is > long after isTracked() returns. Try this instead: Yes, but I want have a function that will return what i get from istracked.php to use

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Michael Geary
> From: cmbtrx > > Uh anyway sorry, the page itself is off-limits (per my client's > request)... Naw... You can always create a test case, without any of your client's code, and post it on a public server like http://pages.google.com/ - this will make it a LOT easier for people to help you. >

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Brandon Aaron
Oh and here are the docs that apply: http://docs.jquery.com/Events/bind#typedatafn -- Brandon Aaron On 9/27/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > The click event on an A tag has a default action associated with it by the > browser ... more specifically a redirect to the links href. You

[jQuery] Re: Safari 2.0 crashes while executing http://jquery.com/test/

2007-09-27 Thread Brandon Aaron
Yes, it has to do with Safari's limited call stack and memory issues. In other words, it can't handle such large amounts of js. I usually test each module at a time in Safari. -- Brandon Aaron On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote: > > > Is this a known problem? > >

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Richard D. Worth
On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote: > > > OK, forgive my tone here...I'm actually quite flabbergasted. > > I ***FINALLY*** get around to trying out jquery. > > Oh, I'm sure that quite obviously I'm doing something wrong, because > after following the first few paragraphs of the "How JQuer

[jQuery] jQuery 1.1.2 + jQuery carousel, help appreciated. :-)

2007-09-27 Thread Steve Finkelstein
Hi all! Thank you for peeking inside of my post. Anyhow, so I got a semi-functional carousel up at: http://devel.phpgeek.org/inventory/single/1 My only issue here is, if you click on an image within the scroll wheel (but do not yet scroll through past the first three images...), you'll notice t

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Brandon Aaron
The click event on an A tag has a default action associated with it by the browser ... more specifically a redirect to the links href. You have to stop this default action in order to see your alert. There are two ways to do this. The first way: A click handler can return false to prevent the defa

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Karl Swedberg
On Sep 27, 2007, at 11:44 AM, cmbtrx wrote: OK, forgive my tone here...I'm actually quite flabbergasted. I ***FINALLY*** get around to trying out jquery. Oh, I'm sure that quite obviously I'm doing something wrong, because after following the first few paragraphs of the "How JQuery Works" sect

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread mo2g
Didn't work. I set up a function to parse the Params and show them in an alert. The results are blank when I add the #adminForm and show all the fields on the page when I remove it. Any other ideas? On Sep 27, 4:42 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Try this: > > $('input,select,

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread cmbtrx
lol looks just like mine. I sense that a stupid typo is fast approaching the direction of this conversation... Nice little site that--pastie. On Sep 27, 5:45 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote: > > > > > OK, forgive my tone here...I

[jQuery] Re: idTabs Plugin working with class and not id

2007-09-27 Thread mockmock
Hi! Thanks for your reply! I understand your trick. But it doesn't seem to work and I don't know why. I tried to do a document.write('.'+id.substr(1)) and it returns me the right class. But all my and remain visible and nothing happens after a click. Here's my code: Content 1

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread mo2g
I set up a quick function to parse the Parms array I get from this and it doesn't appear to work. Basically it is an empty set. Here is the URL of the page I am working on: http://www.glyfada.net/index.php?option=com_mtzcssearch&Itemid=46&template=2 under the advanced search form in the center

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Chris W. Parker
On Thursday, September 27, 2007 8:44 AM cmbtrx said: Oooh ooh me too! > OK, forgive my tone here...I'm actually quite flabbergasted. OK But first, when writing to a mailing list with an issue that you want resolved it's necessary to describe the issue. Some issues can be solved by just reading

[jQuery] Re: Toggling a checkbox

2007-09-27 Thread voltron
YOU DA MAN Glen! :-) On Sep 27, 10:42 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > I whipped up a demo. > Is this what you meant? > > http://www.commadot.com/jquery/checkboxToggle.php > > Glen > > On 9/27/07, voltron <[EMAIL PROTECTED]> wrote: > > > > > Hmm, Thanks guys, but maybe I did dot ma

[jQuery] Re: Paste Monkey Beta Launched

2007-09-27 Thread Tane Piper
Hi Joan, Well the fact that GeSHi supports more languages, that's why I used it. But also, the code is generated directly from the database, in PHP, so there is no lag before it is marked up On 9/27/07, Joan Piedra <[EMAIL PROTECTED]> wrote: > Hey Tane, > This looks interesting. Have you ever c

[jQuery] Re: How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread Christian Bach
try: jQuery('#foo\\.bar\\:filter'); 2007/9/27, ravenel <[EMAIL PROTECTED]>: > > > Hello jQuery Coders! > > Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/ > TR/html4/types.html#h-6.2) > > I wonder how I select it while using the jQuery Selector Syntax? > > jQuery('#foo.bar:

[jQuery] Great free PHP hosting!

2007-09-27 Thread Harlley Roberto
http://www.000webhost.com/?id=5687 -- == Acesse o meu blog! www.webtoo.com.br ==

[jQuery] Re: How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread Karl Rudd
To select an element with an id="#foo.bar:filter" in CSS you would use: #foo\.bar\:filter { /* ... */ } jQuery uses the same syntax (though make sure you're using a newer, 1.2+ version). When using a "literal" string (that is "string") you will have to escape the "\"s because of the way Jav

[jQuery] Re: jQuery.escapeHTML( str ) ?

2007-09-27 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Will it be? Function like htmlspecialchars() in PHP is useful when you need to insert some value into or but you also need non-escaped value too for using it in hashes and/or associative arrays and then send to server side. jQuery's text() method escapes html ent

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Brandon Aaron
Speaking of that ... I've got a plugin ... unreleased/undocumented at the moment ... called viewable. It gives you a percentage of the element that is viewable. http://brandonaaron.net/jquery/plugins/viewable/test/test.html -- Brandon Aaron On 9/27/07, Guy Fraser <[EMAIL PROTECTED]> wrote: > > >

[jQuery] Re: How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread Brandon Aaron
This FAQ should help you. http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F -- Brandon Aaron On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote: > > > Hello jQuery Coders! > > Since it is allowed to use ".", ":" in the id-Tag (http://w

[jQuery] Re: Validation plugin - alphanumeric password with min length

2007-09-27 Thread Jörn Zaefferer
voltron schrieb: Hi Jörn, I think it works now. Do the errors which I define in the error_container override the default ones in the plugin? Maybe it would be cool to make this a default validator for your plugin? I think many others might want this functionality. Thanks for looking into this pr

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread Josh Nathanson
Try this: $('input,select,hidden', '#adminForm').each(function() { do stuff; } This says "get all input, select, hidden elements in the context of #adminForm." -- Josh - Original Message - From: "mo2g" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Thursday, September 27, 200

[jQuery] Re: How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread Karl Swedberg
On Sep 27, 2007, at 11:05 AM, ravenel wrote: Hello jQuery Coders! Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/ TR/html4/types.html#h-6.2) I wonder how I select it while using the jQuery Selector Syntax? jQuery('#foo.bar:filter') doesn't work since it means element

[jQuery] Re: How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread Benjamin Sterling
I believe you have to do jQuery('#foo\.bar\:filter') but I am not 100%, but do remember reading a post about it a while back. On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote: > > > Hello jQuery Coders! > > Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/ > TR/html4/types.html#h

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Benjamin Sterling
lmao... I love those cave man commercials. I can only imagine that you are referring to: http://docs.jquery.com/How_jQuery_Works correct? If so, I have a few questions: 1. Is there code we can look at? 2. Are you doing: $(document).ready(function(){ $("a").click(function(){ alert("Thanks

[jQuery] If anyone needs a file uploader...

2007-09-27 Thread Derek Gathright
Yesterday I replaced a Flex2 uploader I created (that just wasn't working properly in IE) with SWFUpload and found it to be a joy to work with. I looked all over (even at some jQuery plugins), but nothing I found was exactly what I needed (progress bar, multiple files, extendable with javascript).

[jQuery] uhhh.......WAT?

2007-09-27 Thread cmbtrx
OK, forgive my tone here...I'm actually quite flabbergasted. I ***FINALLY*** get around to trying out jquery. Oh, I'm sure that quite obviously I'm doing something wrong, because after following the first few paragraphs of the "How JQuery Works" section (clicking a link launches an alert box...u

[jQuery] ul list which make appear 2 elements in the same time

2007-09-27 Thread mockmock
Hi all, I'd like to have an "ul list", containing "li links" which make appear two elements in the same time. Something like this: show content1 show content2 show content3 blabla blibli blabla blibli So for example, by clicking on "show content 2", the two div's with the "content2" class a

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Marshall Salinger
Did you add the code inside the ready event? Please post your code for review. I am sure anyone would be willing to help you. -Marshall cmbtrx wrote: OK, forgive my tone here...I'm actually quite flabbergasted. I ***FINALLY*** get around to trying out jquery. Oh, I'm sure that quite obviou

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread [EMAIL PROTECTED]
> To answer your specific question, setting > a variable who's scope is outside the callback is as easy as defining the > variable outside the callback: > > var foo; > $.get(..., function() { foo = ...; }); Ahh, I know know where was my mistake. I tried something like that: function a() { var r

[jQuery] Safari 2.0 crashes while executing http://jquery.com/test/

2007-09-27 Thread ravenel
Is this a known problem?

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread John Resig
Do you have a page online somewhere with what you're trying to do? The most common mistake, when beginning, is to forget a $(document).ready(function(){ ... }) around your code (causing it to execute too early). --John On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote: > > OK, forgive my tone here...

[jQuery] dynamically appended table-rows in loose hover effect in IE

2007-09-27 Thread ravenel
I am loading data dynamically with jquery load function e.g.: .even{ background-color: red; } .even:hover { background-color: blue; } jQuery("tbody").append(data); that works perfect in FF, but in IE the hover css for the class="even" is not interpreted anymore in IE for the dynamicly a

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Glen Lipka
What are you trying to do? I am not a programmer, but I can do all kinds of awesome things with jQuery. I have a mess of simple demos and experiments here: http://www.commadot.com/jquery There are others around too. Also, what exactly is 79k? Glen On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread Michael Geary
Uhhh... Can you post a link to your test page? It's impossible to guess what might be wrong otherwise. -Mike > From: cmbtrx > > OK, forgive my tone here...I'm actually quite flabbergasted. > > I ***FINALLY*** get around to trying out jquery. > > Oh, I'm sure that quite obviously I'm doi

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Guy Fraser
Frank Tudor wrote: > Code anticipation would score bonus points. While my tired brain was wondering what you meant by that, it came up with a completely unrelated idea - we could modify/extend the lazy image loader plugin [1] so that code blocks "below the fold" would not get syntax highlighte

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread Michael Geary
You're still expecting things to happen in the wrong order. It's *inside the callback* that the data becomes available, and this is long after isTracked() returns. Try this instead: var r; function isTracked(personcode, callback) { $.get('trackstudent/istracked.php',{'person

[jQuery] Re: jCorner problem?

2007-09-27 Thread Guy Fraser
polyrhythmic wrote: > I've seen that happen to me before when running .corner() on a floated > element. Corner tries to adapt properties from its parent from > the .corner divs, so if you have some css like #container div { float: > left; } the float will be applied to your .corner divs too, and

[jQuery] Problem with jQuery.unique( array )

2007-09-27 Thread Sparticat
Whenever I try to use the $.unique() function it just returns the array without removing the duplicates. $.unique([0,1,1,2,2,3]); returns [0,1,1,2,2,3] instead of [0,1,2,3] as described at: http://docs.jquery.com/Utilities/jQuery.unique#array Is this a bug or am I missing something? I'm curre

[jQuery] Re: Conflict with the Accessible News Slider and the Dimensions plugin (as required by the ClueTip)?

2007-09-27 Thread Brandon Aaron
This is because the selector didn't match any elements before trying to call a method within dimensions (maybe offset). -- Brandon Aaron On 9/27/07, HelloWorld <[EMAIL PROTECTED]> wrote: > > > Hi. I'm experiencing a conflict w/ the Accessible News Slider and the > Dimensions plugin (as required b

[jQuery] Re: Toggling a checkbox

2007-09-27 Thread Glen Lipka
I whipped up a demo. Is this what you meant? http://www.commadot.com/jquery/checkboxToggle.php Glen On 9/27/07, voltron <[EMAIL PROTECTED]> wrote: > > > Hmm, Thanks guys, but maybe I did dot make myself to clear. I am able > to check the boxes, but I´m not able to toggle between both states. >

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread [EMAIL PROTECTED]
First of all - Thank You very much - it is good lesson. > To answer your specific question, setting > a variable who's scope is outside the callback is as easy as defining the > variable outside the callback: > > var foo; > $.get(..., function() { foo = ...; }); I tried that before: function te

[jQuery] Easing Plugin brakes on all methods based on Math.exp with jQuery 1.2.X

2007-09-27 Thread ravenel
Hello I just tested the The Excellent Easing Plugin from http://gsgd.co.uk/sandbox/jquery.easing.php with jQuery 1.2.1. and all methods work fine except: expoin, expoinout, expoout These methods use Math.exp: expoout: function(x, t, b, c, d) { var flip = 1;

[jQuery] Re: Paste Monkey Beta Launched

2007-09-27 Thread Joan Piedra
Hey Tane, This looks interesting. Have you ever consider to use chili instead of geshi? What do you think would be better in this case, a server-load or client-load? Cheers, On 9/26/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > Looking good Tane. The only changes I'd make are CSS related, but

[jQuery] jCarousel drupal example....

2007-09-27 Thread mike55
i have been to the jCarousel website...but it does not have any drupal examples on how to use jCarousel. Can someone offer up an example to use this with drupal ??? please? thanks mjh

[jQuery] Re: Enterprise Javascript?

2007-09-27 Thread Guy Fraser
Robert Koberg wrote: > You don't need 1.6. The current version works in 1.4. > > You can get Rhino from mozilla (which is what is bundled in 1.6) at: > > http://www.mozilla.org/rhino/ > The JSR 223 stuff in general works better on 1.6 though - especially things like Quercus (PHP in Java), etc

[jQuery] How do I select an Element with the ID="foo.bar:data" with jQuera Selectors?

2007-09-27 Thread ravenel
Hello jQuery Coders! Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/ TR/html4/types.html#h-6.2) I wonder how I select it while using the jQuery Selector Syntax? jQuery('#foo.bar:filter') doesn't work since it means element with id foo and class bar and filter data? is

[jQuery] Re: filter not working when expression contains spaces

2007-09-27 Thread Guy Fraser
duff wrote: > But then again, if the filters only apply to the element, why does it > filter nothing regardless of the filter if it contains spaces ?. > Shouldn't the filter return nothing if the expression cannot be > evaluated ?(fail safe rather than silently) > +10 I concur - it should retu

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Frank Tudor
Thanks Ben... That would be awesome! On 9/27/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: > > Franks, > I put something for Dreamweaver a while ago, I think we were on 1.1.1 at > that time, let me see if I can find those files and will hit you up off list > if I find them. > > On 9/27/07, Fran

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread [EMAIL PROTECTED]
> function isTracked(personcode, callback) { > $.get('trackstudent/istracked.php', {'personcode': personcode}, callback); > > } > > isTracked(code, function(tracked) { > // do something with tracked, exactly as you would have done above. > > }); I thought that I understand that but Im doing s

[jQuery] Stuttering in auto-scroller

2007-09-27 Thread [EMAIL PROTECTED]
Hi I have made a scroller based in the jnewsscroll plugin, you can view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem is that it have a stuttering, the movement is not smooth, it's very noticeable in Firefox and it's a little better at Explorer. Do you know that this could be f

[jQuery] Can't parse input from one form of many on page

2007-09-27 Thread mo2g
Sorry if this double posts... I am a newbie with JQuery and have ported a form from Prototype. I have two forms on a page: more fields... more fields... I am using the following code on the page to parse the input from the form: $('input, select, hidden').each(function(){ The

[jQuery] Re: jquery 1.2.1 and the easing (1.1.1) plugin (?!!)

2007-09-27 Thread ravenel
Yes, but just with the methods using Math.exp()... e.g. expoout All the other methods are working porperly... don't understand why it breaks only these On 27 Sep., 16:58, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: > hi guys. > Has anybody experienced problems since the release of the new

[jQuery] Stuttering in auto-scroller

2007-09-27 Thread [EMAIL PROTECTED]
Hi I have made a scroller based in the jnewsscroll plugin, you can view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem is that it have a stuttering, the movement is not smooth, it's very noticeable in Firefox and it's a little better at Explorer. Do you know that this could be f

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Pyrolupus
Hey! When're you going to update Chili Central[1] with the new link? ^_^ Pyro [1] http://noteslog.com/chili/

[jQuery] Conflict with the Accessible News Slider and the Dimensions plugin (as required by the ClueTip)?

2007-09-27 Thread HelloWorld
Hi. I'm experiencing a conflict w/ the Accessible News Slider and the Dimensions plugin (as required by the ClueTip plugin). No customizations made. a 'no object' error: [Exception... "'Dimensions: jQuery collection is empty' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0

[jQuery] Re: Reload Page?

2007-09-27 Thread bweaverusenet
Your DOM updates won't be sticky, but "to reload the page" you can window.location.reload(). Of course, you seem to be headed in a cleaner direction: just changing the text elements in the DOM directly instead of reloading the page. On Sep 27, 11:23 am, Danjojo <[EMAIL PROTECTED]> wrote: > Is it

[jQuery] Re: Reload Page?

2007-09-27 Thread Joan Piedra
On 9/27/07, Danjojo <[EMAIL PROTECTED]> wrote: > > > $.cookie('language', country, {expires: 7}); // set cookie if you just want to reload the page, you could use window.reload(); $.cookie('language', country, {expires: 7}); // set cookie window.reload(); I believe if you try to

[jQuery] Stuttering in auto-scroller

2007-09-27 Thread [EMAIL PROTECTED]
Hi I have made a scroller based in the jnewsscroll plugin, you can view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem is that it have a stuttering, the movement is not smooth, it's very noticeable in Firefox and it's a little better at Explorer. Do you know that this could be f

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Loren Pipes
Map is really nice for this. var attributes = $('.selected').map(function() { return $(this).attr('rel'); }); VP

[jQuery] script within ajax html response

2007-09-27 Thread MHM
Hi, I am working on a website using jquery for ajax with various other jquery plugins. In my app, when making ajax queries for forms, i return back the complete form as html since it carries information about validation which is done on the server-side. Taking 2 plugin into consideration, one th

[jQuery] Re: functions after $.get work strange

2007-09-27 Thread Guy Fraser
Erik Beeson wrote: > $.get is asynchronous, meaning the call to $.get returns immediately, > even before the callback has happened. To answer your specific > question, setting a variable who's scope is outside the callback is as > easy as defining the variable outside the callback: Erik - your

[jQuery] great new site

2007-09-27 Thread günni
http://spielwelt6.knightfight.de/?ac=vid&vid=121044096

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Benjamin Sterling
Franks, I put something for Dreamweaver a while ago, I think we were on 1.1.1 at that time, let me see if I can find those files and will hit you up off list if I find them. On 9/27/07, Frank Tudor <[EMAIL PROTECTED]> wrote: > > I like this idea, and pardon me if this has been asked before, but is

[jQuery] Re: Toggling a checkbox

2007-09-27 Thread voltron
Hmm, Thanks guys, but maybe I did dot make myself to clear. I am able to check the boxes, but I´m not able to toggle between both states. When the user checks the box, an input field is to be disabled, and when he unchecks it, the input box should be enabled, thats fwhat the toggle function is fo

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Andy Matthews
Ahhh... Easy enough. Turns out I don't need that functionality after all, but that's good to keep in mind. Thanks. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Thursday, September 27, 2007 11:26 AM To: jquery-en@googlegroups.com Subje

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-27 Thread Brandon Aaron
That looks a lot more promising! Does anyone have experience implementing this extension that would like to help? -- Brandon Aaron On 9/27/07, Sam Collett <[EMAIL PROTECTED]> wrote: > > > You use MediaWiki don't you? If so can't you convert the Wiki markup > to Xml and go from there? e.g. > http:

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Frank Tudor
I like this idea, and pardon me if this has been asked before, but is there a code higlighter for jQuery that can be used in dreamweaver? Code anticipation would score bonus points. Frank On 9/27/07, Steve Blades <[EMAIL PROTECTED]> wrote: > > Looks outstanding. Now, if it only had a syntax high

[jQuery] Re: Alternative syntax?

2007-09-27 Thread Michael Geary
You have to use functions in that code, because you are using two callbacks, and that's how you do callbacks in JavaScript, with functions that get called later. The first callback is the outer function that gets called when the document is ready. The second callback is the inner function that

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-27 Thread Sam Collett
You use MediaWiki don't you? If so can't you convert the Wiki markup to Xml and go from there? e.g. http://www.mediawiki.org/wiki/Extension:Wiki2xml Much better than screen scraping. On Sep 27, 4:24 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > The documentation is going through some growing

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Benjamin Sterling
That is true, that is the correct behaviour, there was specific talk about what you are expecting a bit ago and I can't remember the end discussion, it may have even been on the dev list. I will see if I can come across it. Ultimately, you can do: var $selected = Array(); $('.selected').each(fun

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-27 Thread Andy Matthews
Okay... Don't want to be demanding...just looking for the simplest, most straight-forward docs. Thanks for all your hard work Brandon...I know most (if not all) of you guys are doing this in your spare time. It's appreciated. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: jCorner problem?

2007-09-27 Thread polyrhythmic
I've seen that happen to me before when running .corner() on a floated element. Corner tries to adapt properties from its parent from the .corner divs, so if you have some css like #container div { float: left; } the float will be applied to your .corner divs too, and bork your layout. Corner wo

[jQuery] jquery 1.2.1 and the easing (1.1.1) plugin (?!!)

2007-09-27 Thread GianCarlo Mingati
hi guys. Has anybody experienced problems since the release of the new jquery 1.2 and it's use in conjunction with the plugin in subject? I found that the expoinout method and all the "inout" methods do not work anymore smootly. GC

[jQuery] Attr calls on jQuery object with more than one element?

2007-09-27 Thread Andy Matthews
If I wanted to get the rel values for all elements which match a jQuery call, how would I do that? I thought that this: var $selected = $('.selected').attr('rel'); alert($selected); would give me this: 9/1/2007,9/30/2007 But it only returns the first value. Is this correct behaviour? I basi

[jQuery] Re: Aaron Gustafson has a great ALA-Article on (Content-)Image Alignment and Consistency

2007-09-27 Thread Remy Sharp
> Is there a reason you didn't replace this.getElementsByTagName? On the first .getElementsByTagName - there's no particular reason to justify using jQuery. However, the second one should really read: $('p', this).each(... There really only there because I did a two minute conversion from Prot

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-27 Thread Sean O
Here's a great article I read recently on implementing undo (enhanced from original post, based on reader inputs): http://humanized.com/weblog/2007/09/21/undo-made-easy-with-ajax-part-15/ Demo: http://humanized.com/weblog/images/resources/undo/todo_sync.html Source (using jQuery, natch): http:/

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Steve Blades
Looks outstanding. Now, if it only had a syntax highlight library for ColdFusion;). On 9/27/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote: > > > > Very simple. Look at the new example posted in > http://noteslog.com/post/chili-19-released-today/ : It's what you're > looking > for. > > But Chil

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-27 Thread Brandon Aaron
The documentation is going through some growing pains. Currently the only source of documentation for 1.2.x is on the wiki. I've been thinking about how we can take those docs and create an XML file like we had before ... currently the only idea I have is to screen scrape which if you look at the a

[jQuery] Reload Page?

2007-09-27 Thread Danjojo
Is it possible to reload the page right after I set the cookie? Cause I have to update all of the text in a different language.. // Flag image change on menu select, set the cookie with the spoken language choice // and reload the page in that language $("#languages").bind('change', function()

[jQuery] Re: Site Using jQuery - Network Solutions

2007-09-27 Thread seedy
funny, I just had a co-worker Ive been introducing to jQuery yesterday say: "[jQuery is] worth including even if only for the document.ready function" Glen Lipka wrote: > > Network Solutions just revamped their whole account manager. > Guess what library they depend on? It rhymes with Mayberr

[jQuery] When will the API be updated for 1.2.1?

2007-09-27 Thread Andy Matthews
I use this: http://jquery.com/api/ all the time because it's the simplest, easiest, reference for jQuery methods and behaviours. But it still lists it's version as 1.1.2. Are there plans to update this reference? Alternately, I'd argue that there needs to be ONE single point of entry (on the jQ

[jQuery] Re: Toggling a checkbox

2007-09-27 Thread Glen Lipka
$(":checkbox").attr("checked","anyThingWillCheckIt") $(":checkbox").removeAttr("checked") Glen On 9/27/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > > To check or uncheck a checkbox, assign true or false to its 'checked' > property (untested): $('#myCheckbox')[0].checked = true; or > $('#myCheckb

[jQuery] Re: About jQuery.yav date validation

2007-09-27 Thread SeViR
weide escribió: > I Search the web and found code like down: > > > 2. Can one validate date formats form other countries like Germany? > > This is a YAV config setting, by example Spain date format is > dd-MM-, so in the second map param > of the plugi

  1   2   >