[jQuery] Re: Comparing Arrays

2007-11-01 Thread Michael Geary
Your first paragraph and second paragraph sound like two different specifications. Let's try a concrete example. Assume you have these two arrays: [4,7,9,3,6] [3,6,9,3,7] What should the output be? > Is there a function that exists for the purpose of comparing > two arrays and returning the

[jQuery] Re: Comparing Arrays

2007-11-01 Thread Yehuda Katz
This is undocumented but try $(arr1).not(arr2).get() Sent from my iPhone On Nov 1, 2007, at 9:38 PM, Flesler <[EMAIL PROTECTED]> wrote: Well.. you have jQuery.inArray, that will do part of the job. It gives you the index of the given value in one array or -1. jQuery.inArray( 1, [8,3,2,1,2] )

[jQuery] Re: Comparing Arrays

2007-11-01 Thread Flesler
Well.. you have jQuery.inArray, that will do part of the job. It gives you the index of the given value in one array or -1. jQuery.inArray( 1, [8,3,2,1,2] ) == 3. You must iterate and ask each time whether the function returns -1. No existing function that I know about. On 1 nov, 18:26, rgrwkmn

[jQuery] Re: Re[jQuery] sizing iframe

2007-11-01 Thread Karl Swedberg
I ran across this blog post a while back, showing how to resize iframes using jQuery. Maybe this one will work: http://jbscdev.blogspot.com/2007/08/automatic-iframe-height-sizing- using.html --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 1, 2007

[jQuery] Re: Alternatives to dom ready() for running Jquery code

2007-11-01 Thread Erik Beeson
Move your javascript to the bottom of the page, right before , or use $(window).load(...) instead, if you can handle your javascript not running until all of your external resources (read: images) have loaded. I think this should be fixed "soon". --Erik On 11/1/07, Brett <[EMAIL PROTECTED]> wro

[jQuery] Alternatives to dom ready() for running Jquery code

2007-11-01 Thread Brett
Hey all, I've ran into a problem where I get code that runs occasionally on IE6 and IE7. It's working fine in Firefox, of course :/ The code I have is: $(document).ready(function(){ //$(function() headline_count = $("div.headline").size(); $("div.headline:eq("+current_headline+")").css('

[jQuery] Re: passing this

2007-11-01 Thread Jean-Sébastien
i just test it, it is just nice! and really usefull. On Nov 2, 2:43 am, Danny <[EMAIL PROTECTED]> wrote: > I played with this (and was inspired by the code > inhttp://blog.jcoglan.com/2007/10/30/asynchronous-function-chaining-in-...) > and created a namespacing plugin: > > (function($){ > $.na

[jQuery] Correct way to init functions? (jquery not always loading)

2007-11-01 Thread Brett
Here is some code here: $(function(){ $('a.choicelist').bind( 'click', 'click', function() { var targetElementSelectorString = $(this).attr('rel');

[jQuery] Re: passing this

2007-11-01 Thread Danny
I played with this (and was inspired by the code in http://blog.jcoglan.com/2007/10/30/asynchronous-function-chaining-in-javascript) and created a namespacing plugin: (function($){ $.namespace = function(ns, functions){ $.fn[ns] = function() {return this.extend(functions)}; }; $.namespa

[jQuery] Re: doc type error when using corner plugin

2007-11-01 Thread Danny
I always get error when the server returns my 404 (page not found) error page instead of the javascript file. Make sure the script file with that name exists; I suspect you really want 'jquery.corner.js' (standard way to name plugins) rather than 'jquery- corner.js' On Oct 31, 11:24 pm, iain dunc

[jQuery] Re: How to pull details info into master page (php/mysql)

2007-11-01 Thread Yehuda Katz
Sent from my iPhone On Nov 1, 2007, at 5:29 PM, "Dave Buchholz - I-CRE8" <[EMAIL PROTECTED] > wrote: I now have this working using the following code: $(document).ready(function() { $('#view a').click(function() { $('#show-details').hide(); $.get($(this).attr("href"), {}, function

[jQuery] Re: Autoselect specific checkboxes based on select dropdown

2007-11-01 Thread Wizzud
Here's an alternative - and bear in mind that's all it is ... one alternative. var levels = { a6 : [1119,1123,1099] // bottom , a5 : [1086,1083,1079] // medium , a4 : [1081,1084,1082] // top } , boxes = $('input[name=permissionid]') ; $('#a

[jQuery] Re: How do you do Client/Server interaction? (CakePHP/JSON/jQuery)

2007-11-01 Thread McFadly
Hey Tane - check out cake's JavascriptHelper::object() On Nov 1, 6:00 pm, "Tane Piper" <[EMAIL PROTECTED]> wrote: > Well, what would you know! Having written out what I wanted to get, > and by simply applying a little brainpower, I came up with the > solution. What I did was write a CakePHP com

[jQuery] Re: How to pull details info into master page (php/mysql)

2007-11-01 Thread Dave Buchholz - I-CRE8
I now have this working using the following code: $(document).ready(function() { $('#view a').click(function() { $('#show-details').hide(); $.get($(this).attr("href"), {}, function(data) { $('#show-details').html(data).fadeIn("slow"); }); return false; })

[jQuery] Re: jQuery AJAX Docs

2007-11-01 Thread Dave Buchholz - I-CRE8
Thanks Bil Regards, Dave Buchholz I-CRE8 http://www.i-cre8.co.uk Skype ID: I-CRE8 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bil Corry Sent: 01 November 2007 15:38 To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery AJAX Docs

[jQuery] Re: [NEWS] Site Using jQuery: TurboTax.com

2007-11-01 Thread Guy Fraser
polyrhythmic wrote: > I think they just change the text size - I don't see an animation with > firefox, the text is either large or small. Note that the button does > not change size, so I don't think it's an actual 'zoom'. ...Unless you > guys see something different? > Ah, you are correct,

[jQuery] simple table row pager

2007-11-01 Thread Korijn
I've been working on a simple pager function but it's incredibly lengthy and I can imagine that it should be possible to do this much, much more simpler and shorter. So I decided to post it up here and see if anyone could give me some pointers. Thanks. function pageMe(which, page, pager) {

[jQuery] Re: Canceling an animation

2007-11-01 Thread Yehuda Katz
You can cancel an animation via $().stop Sent from my iPhone On Nov 1, 2007, at 5:17 PM, "S. Robert James" <[EMAIL PROTECTED]> wrote: I have an animation that runs after a delay: setTimeout(function(){$(".mbox").fadeIn('slow');},500); If I need to cancel it, how do I this? I would like

[jQuery] Canceling an animation

2007-11-01 Thread S. Robert James
I have an animation that runs after a delay: setTimeout(function(){$(".mbox").fadeIn('slow');},500); If I need to cancel it, how do I this? I would like to cancel it regardless of whether it is still in the initial setTimeout of 500ms, or has already started to fadeIn.

[jQuery] Re: How do you do Client/Server interaction? (CakePHP/JSON/jQuery)

2007-11-01 Thread Tane Piper
Well, what would you know! Having written out what I wanted to get, and by simply applying a little brainpower, I came up with the solution. What I did was write a CakePHP component and helper. First off, here is the component: json_for_layout = array_merge($this->json_for_layout, $add);

[jQuery] Re: Submit event

2007-11-01 Thread Wizzud
function checkRadio() { var rtn = ($('input.amount:checked').length > 0); $("#billing").css( { color : (rtn ? '#658300' : '#C60006') } ).show(); return rtn; }; On Nov 1, 2:57 pm, choffman <[EMAIL PROTECTED]> wrote: > Hi There, > I could use some jquery help here. This probably something ve

[jQuery] Using Firefox's pageshow with jQuery

2007-11-01 Thread S. Robert James
Firefox provides pageshow and pagehide events, to handle page being refereshed from cache: quite useful! http://developer.mozilla.org/en/docs/Using_Firefox_1.5_caching Unfortunately, as far as I can tell, jQuery simply won't bind to them! Anyone know of a way to bind to those events with jQue

[jQuery] Re[jQuery] sizing iframe

2007-11-01 Thread randomuser
Hey guys, im looking to dynamically resize an iframe to fit properly into a page without scrolling. The iframe height is different page to page so the iframe needs to be able to get bigger or smaller. Theres a thread over on the http://drupal.org/node/180625 Drupal forums with the following cod

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread prit
Thanks for the guidelines. I should have searched here and also google. But your comments helped me. :) On Nov 1, 4:03 pm, Pops <[EMAIL PROTECTED]> wrote: > Whoa! Rey, what a different between IE and FF. > > I am not interested in the half-truths in any of this, but rather what > does the tes

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread Pops
Whoa! Rey, what a different between IE and FF. I am not interested in the half-truths in any of this, but rather what does the test show to improve jQuery, if anything? -- HLS On Nov 1, 1:59 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Hi Prit, > > Please do a search in the archives for this

[jQuery] Re: Scrolling a div area without scrolling the page?

2007-11-01 Thread marcmesa
Josh, take a look at http://jquery.com/plugins/project/Coda-Slider On 25 Oct, 05:38, Josh V <[EMAIL PROTECTED]> wrote: > guys, any horizontal scrolling? just > like,www.panic.com/codaandhttp://www.hbcweb.com/ > > On Sep 11, 10:23 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> > wrote: > > > Chec

[jQuery] Re: manipulation on content results in text you can't trigger events with

2007-11-01 Thread MajorXP
I figured out a solution and wanted to run it by some other eyes Essentially the solution was to re-call the popup function. Since that worked, I had to also test adding future rows and ran into double popups, so I changed the class and jquery magically remembered the old class (as I had hope

[jQuery] Re: .mouseover performance

2007-11-01 Thread Tony
Insert .stop() before .animate(...) : $("div").stop().animate({ width: $(this).width(), marginLeft: $(this).offset().left } ,"slow" ); --Tony On 10月31日, 下午4�r32分, Cloudream <[EMAIL PROTECTED]> wrote: > http://labs.cloudream.name/jquery/move.html >

[jQuery] Comparing Arrays

2007-11-01 Thread rgrwkmn
Is there a function that exists for the purpose of comparing two arrays and returning the values that are different? The arrays I'm comparing are likely to contain all the same values but in a different order. From what I read in the jQuery docs there is no function to compare array orders. I can

[jQuery] clueTips hangs on FF with $ signs in the ajax data.

2007-11-01 Thread vwRiver
I am playing the clueTips and get this problem: I tried to get the content via ajax, but there are $ signs in the content. The clueTip works fine on IE+XP and Konqueror+Linux, but it hangs if there are $ signs in the ajax data. otherwise, it is just fine. How to deal with this? Thanks a lot. V

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread MorningZ
I just have a small usuability suggestion for a future release In the "Date Range" implementation, make it so you could pick the either start or end date at any time... so just say a user choses "Nov 20th" first, then selects "Nov 5th" (whcih currently isn't possible as it "locks out" previous d

[jQuery] Re: Custom function called in toogle()

2007-11-01 Thread Wizzud
Calling toggle() runs event.preventDefault. Whatever you want the click to do, you need to code it yourself. On Nov 1, 9:44 am, Snook <[EMAIL PROTECTED]> wrote: > Thanks a lot Wizzud. This works fine. > > But did you have an idea why the checkbox didn't display the check > mark when there are che

[jQuery] Re: Is it possible to alter internal CSS properties?

2007-11-01 Thread Danny
I actually wrote a plugin that may be helpful (worked with jQuery 1.1, Firefox and Internet Explorer. I haven't updated it since) See http://www.nabble.com/Creating-stylesheets-in-jQuery-tf3298905.html#a9176651 Lets you write $.style('.someClass').css('background-color', 'yellow'); On Nov 1, 5:17

[jQuery] How do you do Client/Server interaction? (CakePHP/JSON/jQuery)

2007-11-01 Thread Tane Piper
Apologies for the cross posting here, but I myself am at a bit of a crossroads in my applications development, and I'd like to take the time to put out this email in the hopes that it generates some good discussion, and can maybe teach me a few things. A little background first to my issues. I a

[jQuery] Re: Is it possible to alter internal CSS properties?

2007-11-01 Thread Danny
You can manipulate stylesheets, though it's not pretty (or built-in to jQuery; you could write plugins to do it). See http://www.hunlock.com/blogs/Totally_Pwn_CSS_with_Javascript On Nov 1, 4:24 am, "Jesse Klaasse" <[EMAIL PROTECTED]> wrote: > As we all know, we can do the following using jQuery:

[jQuery] Re: Defining and using of JSON defaults/options

2007-11-01 Thread Danny
I believe the syntax is (not tested): $(e).parent().next()[utoggle.animationType](uToggle.speed); Javascript objects are associative arrays. Danny On Nov 1, 3:29 am, Olaf Gleba <[EMAIL PROTECTED]> wrote: > Little Correction for the second example (needless '()' in chain). > > Am 01.11.2007 u

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread Benjamin Sterling
Karl, Very well put, someone would think you were a English teacher at one point. :) On 11/1/07, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > In addition to Rey's points, it's worth noting that the test is pretty > flawed for a number of reasons, not the least of which is that the DOM > structure

[jQuery] Treeview and IE "object doesn't support this object or method"

2007-11-01 Thread cfdvlpr
I'm getting this error in IE, but not Firefox. It borks on this line: $("#pageNav").Treeview({speed: "fast", collapsed: true, openurl: true}); $(function(){ $("#pageNav").Treeview({speed: "fast", collapsed: true, openurl: true});

[jQuery] Re: Form function no firing

2007-11-01 Thread Josh Nathanson
I see the problem. This line: if ( $(this).attr("checked", true) ) Should be: if( $(this).attr("checked") ) or, similarly if( $(this).is(":checked") ) What you are doing with your current code is actually setting the radio to checked=true -- when the "attr" method has two arguments, the first

[jQuery] Re: having issues with getJSON

2007-11-01 Thread Benjamin Sterling
MF, Thanks for the response, yeah, that was the case and I have since fixed it. Thanks again. Benjamin Sterling On 11/1/07, MF <[EMAIL PROTECTED]> wrote: > > > It looks like jquery populates the "_" parameter with a timestamp to > defeat any request-caching, and google/picasa does not like extra

[jQuery] Re: manipulation on content results in text you can't trigger events with

2007-11-01 Thread Tobias Parent
Well, you've attached the event, then gone ahead and created more divs and expect them to be forward-attached. You may want to look at something like LiveQuery. Regards, -Toby P. MajorXP wrote: I'm sure this was covered somewhere, but I can't find it. I'm struggling with some code and rath

[jQuery] Re: Selector for Toggled Element

2007-11-01 Thread motob
try $("table:hidden") or some form of that. On Nov 1, 2:30 pm, studiobl <[EMAIL PROTECTED]> wrote: > I'm trying to write an if statement based on the toggled state of an > element (a table, in this case). Attempting to select the table by > any combination of id, class, and/or element type doesn

[jQuery] manipulation on content results in text you can't trigger events with

2007-11-01 Thread MajorXP
I'm sure this was covered somewhere, but I can't find it. I'm struggling with some code and rather than try to explain it, first look at this code. It should be simple to follow, but when you run it - it doesn't work as intended. -

[jQuery] Re: Form function no firing

2007-11-01 Thread choffman
Hi Josh, Thanks for getting back to me. I'm not going to be using the Validate plug-in. I think this can be done with jquery alone. It doesn't seem all that complex. The main issue at the moment is getting the event- handler to run the function (checkRadio) when the submit button is pressed.

[jQuery] Re: For Brazilians jQuery Developers

2007-11-01 Thread Alexsandro_xpt
Ae galera bom saber que tem brasileiro por aqui.. Aproveitando, vcs viram meu post? http://groups.google.com/group/jquery-en/browse_thread/thread/76e9db9b322b951e/52f8a46d50a57f87?#52f8a46d50a57f87 tem ideia de como resolver? valew On 1 nov, 15:44, "Web Specialist" <[EMAIL PROTECTED]> wrot

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread Karl Swedberg
In addition to Rey's points, it's worth noting that the test is pretty flawed for a number of reasons, not the least of which is that the DOM structure of the test page is ridiculous and not at all similar to what you might see on a typical commercial site or blog. I should know, because I'

[jQuery] Re: having issues with getJSON

2007-11-01 Thread MF
It looks like jquery populates the "_" parameter with a timestamp to defeat any request-caching, and google/picasa does not like extra parameters in its requests. As a workaround, you can disable this by setting jQuery.ajaxSettings.cache = true before calling $.getJSON, and restore its original v

[jQuery] Effects Issue

2007-11-01 Thread dacoder
I am working on an overlay that has a timer associated with it. when you mouseover it, it triggers the toggleOn method and when you hover out it triggers my timer depending on whether you have clicked the close button or not. I was accidently working on my local which had both 1.1.2 and 1.1.4. I w

[jQuery] Re: Form function no firing

2007-11-01 Thread Josh Nathanson
It doesn't look like you are using the Validate plugin in the way it's intended. You might want to have a look at the plugin's home page for more information on its usage. Your submit function should look something like: $("#register").submit(function() { $(this).validate(options); }); .

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread Guy Fraser
prit wrote: > But recently I noticed a website http://mootools.net/slickspeed/ which > compares 3 frameworks including jQuery. I ran the tests on that site > and noticed that they show jQuery as the slowest performer out of the > 3 frameworks (Mootools, Prototype and jQuery). > > Does anybody have

[jQuery] transparentCorners plugins

2007-11-01 Thread Alexsandro_xpt
Hellow all I get from http://illandril.net/jQuery/transparentCorners/, and I try using it within Extjs ( www.extjs.com ) adapter jquery, but while include: The produce $("#teste1").transparentCorners(); don't work. Why that happen? Thank's

[jQuery] Re: For Brazilians jQuery Developers

2007-11-01 Thread Web Specialist
Alexandre legal hein? O único problema: a validação não é feita com o Validation Plugin do Jorn, né? Com isso para mim fica meio difícil usar a sua estratégia. Marco Antonio Em 01/11/07, alexanmtz <[EMAIL PROTECTED]> escreveu: > > > Sorry everyone, the right link is > http://www.alexandremagno.

[jQuery] Selector for Toggled Element

2007-11-01 Thread studiobl
I'm trying to write an if statement based on the toggled state of an element (a table, in this case). Attempting to select the table by any combination of id, class, and/or element type doesn't work. Using Firefox, I can see that the table is toggled between display:table and display:hidden. Th

[jQuery] Form function no firing

2007-11-01 Thread choffman
Hi There, I could use some jquery help here. Its probably something very simple that I'm missing. I started using jquery a few weeks ago so please bear with me. In a nut shell, when a user submits the form (form id="register"), I want it check to make sure they have selected a radio button (cla

[jQuery] Re: Slickspeed from Mootools

2007-11-01 Thread Rey Bango
Hi Prit, Please do a search in the archives for this topic. Just as early as last week, I posted a response to this. Also, be sure to run the same test in IE so you can see totally different results. My post goes into detail about that as well. Thanks, Rey... prit wrote: I have tried di

[jQuery] Site using jQuery and Plugins: deals.hardkap.com

2007-11-01 Thread prit
Hello, I am a beginner with Javascript frameworks. I used jQuery and some of the plugins to create a small deals website. Visit the site at http://deals.hardkap.com. I am not a good site designer. I am a programmer though. :) The look of my site should explain my poor site design. Thanks, Prit

[jQuery] Form Valdation Issues

2007-11-01 Thread [EMAIL PROTECTED]
Hi There, I could use some jquery help here. This probably something very simple that I'm missing. I started using jquery a few weeks ago so please bear with me. In a nut shell, when a user submits the form (form id="register"), I want it check to make sure they have selected a radio button (cl

[jQuery] Re: slideViewer 1.1

2007-11-01 Thread jim_t
Hi, Really cool slideviewer! How easy would it be to allow it to use a common class name rather than a unique ID, this would work better for multiple slideshows on a page. On Oct 8, 8:48 am, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: > http://www.gcmingati.net/wordpress/2007/09/12/seeing-it-b

[jQuery] Slickspeed from Mootools

2007-11-01 Thread prit
I have tried different javascript frameworks and I finally decided to use jQuery because of the ease of use and all the good plugins available. But recently I noticed a website http://mootools.net/slickspeed/ which compares 3 frameworks including jQuery. I ran the tests on that site and noticed t

[jQuery] RE: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Marc Grabanski
@Stefan: datepicker({ firstDay: 1 }); http://docs.jquery.com/UI/Datepicker/datepicker#options Click the options tab here to see the 30+ customization option: @Dan: The animation snap back occurs when you have drastically different datepickers on the same page. Typically this wouldn't happen beca

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread 1Marc
@Stefan: datepicker({ firstDay: 1 }); http://docs.jquery.com/UI/Datepicker/datepicker#options Click the options tab here to see the 30+ customization option: @Dan: The animation snap back occurs when you have drastically different datepickers on the same page. Typically this wouldn't happen bec

[jQuery] Submit event

2007-11-01 Thread choffman
Hi There, I could use some jquery help here. This probably something very simple that I'm missing. I started using jquery a few weeks ago so please bear with me. In a nut shell, when a user submits the form (form id="register"), I want it check to make sure they have selected a radio button (cl

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread 1Marc
@Stefan: datepicker({ firstDay: 1 }); For a complete list of customization options go here and click the options tab: http://docs.jquery.com/UI/Datepicker/datepicker#options @Dan: That happens when you render multiple months datepicker and only one month in the next datepicker. Typically you wo

[jQuery] Re: Request for comments on code snippet.

2007-11-01 Thread Klaus Hartl
On Nov 1, 2:21 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > >i've just started using jQuery, and I'm having lots of fun. > > >I have the following code snippet. What it does is looks for all > >instances of a true and false and replaces the > >content with an image of a tick and cross. >

[jQuery] Re: googlyx.com going too boom nice webiste

2007-11-01 Thread Jonathan Sharp
SPAM -- please ignore this post, banning user... On 11/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > http://googlyx.com/ > > hi > i get this website and i joined here its realy cool give a look > http://googlyx.com/ > >

[jQuery] Re: PHP jsoner ver 0.9

2007-11-01 Thread polyrhythmic
FYI, the extension is fully compatible with PHP 4, and you can load it with dl() if you can obtain the right binary. I agree with you on the is_numeric, I had to write that into my JSON php fn before I had the extension loaded. Charles On Oct 31, 6:35 pm, resetstudio <[EMAIL PROTECTED]> wrote:

[jQuery] googlyx.com going too boom nice webiste

2007-11-01 Thread sauravh2006
http://googlyx.com/ hi i get this website and i joined here its realy cool give a look http://googlyx.com/

[jQuery] Re: My first plugin, criticisms please

2007-11-01 Thread polyrhythmic
I've found that writing my code with a modular OOP plugin mentality, it's a lot easier to reuse my own code and trade snippets with others, since it's already abstracted into a plugin. I don't know if you've seen Mike Alsup's recent Learning jQuery post about Plugin Dev, but it's a good read abou

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Josh Nathanson
LiveQuery is a staple in my list of plugins. No matter how much I mess with the DOM, my events always fire. Leave the core lean, but this plugin deserves more recognition for sure. Given the dispersed nature of the jQuery community, what are some suggestions to get the plugin more recognition

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Shaun Kester
LiveQuery is a staple in my list of plugins. No matter how much I mess with the DOM, my events always fire. Leave the core lean, but this plugin deserves more recognition for sure. On Oct 31, 7:04 pm, "Yehuda Katz" <[EMAIL PROTECTED]> wrote: > So as far as I'm concerned, livequery is the biggest

[jQuery] Re: [NEWS] Site Using jQuery: TurboTax.com

2007-11-01 Thread polyrhythmic
I think they just change the text size - I don't see an animation with firefox, the text is either large or small. Note that the button does not change size, so I don't think it's an actual 'zoom'. ...Unless you guys see something different? Charles On Nov 1, 4:46 am, Tobias Parent <[EMAIL PRO

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Brandon Aaron
Perhaps you didn't see the example page: http://brandonaaron.net/jquery/plugins/livequery/test/test.html Doing those same two examples without Live Query would require you to write other helper functions to bind those events and to manually monitor when an element is added or removed. Hardly just

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Yehuda Katz
My example was shorthand for the problem that's being solved. LiveQuery allows you to define behaviors on the DOM that will be applied on current *or future* nodes. It basically takes the selector engine from being a snapshot tool to making the DOM "alive", just like CSS (in CSS, if a class is remo

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Michael Stuhr
Graeme B. Davis schrieb: Is there a way to apply a style it so that it looks a bit "better"? Perhaps like this calendar I've been using on my sites for ~6yrs: http://www.ssw.com.au/ssw/Standards/DeveloperGeneral/Images/popupCalendar.gi f http://www.peterbe.com/plog/blogitem-20031017-1526/popwi

[jQuery] Re: Find all links that go to .jpg images

2007-11-01 Thread sccr410
This worked like a charm: $(document).ready(function() { $("a[href$='.jpg']").addClass('thickbox'); }); -- View this message in context: http://www.nabble.com/Find-all-links-that-go-to-.jpg-images-tf4728653s27240.html#a13531475 Sent from the jQuery Gen

[jQuery] Autoselect specific checkboxes based on select dropdown

2007-11-01 Thread Andy Matthews
A coworker needed to be able to select a series of checkboxes based on the value of a select dropdown. Here's what I came up with...I'm wondering how it could be improved. The dropdown: select an access level 25 / Low Dealer 50 / Medium-High Dealer 75 / High Dealer One of 40

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Graeme B. Davis
Is there a way to apply a style it so that it looks a bit "better"? Perhaps like this calendar I've been using on my sites for ~6yrs: http://www.ssw.com.au/ssw/Standards/DeveloperGeneral/Images/popupCalendar.gi f http://www.peterbe.com/plog/blogitem-20031017-1526/popwincal I like the jquery cal

[jQuery] Re: jQuery AJAX Docs

2007-11-01 Thread Bil Corry
Dave Buchholz wrote on 10/31/2007 4:39 PM: Are there any resources for newbies that explain how to do AJAX calls with jQuery ? Go here: Follow the "Tutorials" link in the upper menu bar. Scroll down to the section labeled "AJAX". - Bil

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Lee Hinde
On 10/31/07, Yehuda Katz <[EMAIL PROTECTED]> wrote: > So as far as I'm concerned, livequery is the biggest advance in jQuery since > its inception (no, I am not its author). I'm trying to understand why it's > having such a slow rate of adoption. > > > it solves this problem: > $("div.klass").drag

[jQuery] Re: Include javafile

2007-11-01 Thread seedy
I cant see any immediate reason why that would not work, however I thought i would point out that putting your scripts at the bottom of the page is actually the recommended way of including scripts. http://developer.yahoo.com/performance/rules.html#js_bottom Muhammad Mohsin wrote: > > i mean

[jQuery] Re: jQuery 1.2 benchmark

2007-11-01 Thread Rey Bango
Because Ext doesn't consider file size when optimizing their DOMQuery engine. With jQuery, we try to find a good balance between keeping the core file size down while providing very good performance. Rey... weepy wrote: How come Ext is so fast !! On Oct 26, 9:30 am, "Andy Matthews" <[EMAI

[jQuery] Re: jQuery 1.2 benchmark

2007-11-01 Thread weepy
How come Ext is so fast !! On Oct 26, 9:30 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Can someone simply explain what the colors indicate for any specific row? > > Red? > Orange? > Green? > Grey? > Black? > > Also, in IE7, these are the results I got (for what it's worth): > > Dojo query 0

[jQuery] Re: Reminder: Last few hours to save 30% on jQuery in Action BETA

2007-11-01 Thread Fred Janon
Thanks for the answer, Yehuda. Hopefully the discount is still good... Fred On 11/1/07, Yehuda Katz <[EMAIL PROTECTED]> wrote: > > The book covers jQuery 1.2. The book got started pre-1.2, but we did a > full-pass of the entire book to update it for 1.2. It also includes jQuery > UI and livequery

[jQuery] Re: Reminder: Last few hours to save 30% on jQuery in Action BETA

2007-11-01 Thread Fred Janon
Ooops, coupon expired. Too bad, I wish I heard about it earlier. Fred On 11/1/07, Fred Janon <[EMAIL PROTECTED]> wrote: > > Thanks for the answer, Yehuda. Hopefully the discount is still good... > > Fred > > On 11/1/07, Yehuda Katz <[EMAIL PROTECTED]> wrote: > > > > The book covers jQuery 1.2. Th

[jQuery] Re: For Brazilians jQuery Developers

2007-11-01 Thread alexanmtz
Sorry everyone, the right link is http://www.alexandremagno.net/portfolio_dev/site/contato there is a complete form validation send via ajax. On Oct 31, 10:32 pm, alexanmtz <[EMAIL PROTECTED]> wrote: > O que vocês estavam querendo é > isso:http://www.alexandremagno.net/portfolio_dev/contato >

[jQuery] cluetip integration on wordpress theme

2007-11-01 Thread eNeRgIa
Hi, I'm trying to use cluetip on a wordpress theme; by default wordpress displays a calendar widget and I would like to tooltip-ify it using jquery. I thought cluetip might help me but I can't get it to work. The page is http://www.gennarocarotenuto.it/index.php/ and as you can see it doesn't wo

[jQuery] Re: Include javafile

2007-11-01 Thread Muhammad Mohsin
jquery code is in listing java $('.price_convert').each(function() { $(this).mouseover(function() { alert("IN"); }); $(this).mouseout(function() { alert("OUT"); }); }); });

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Dan G. Switzer, II
Marc, One thing I noticed is that in FF 2.0.0.8 there's a little "resize" jump when the datepicker opens. As the open animation is occurring, it does some kind of weird little "snap back" at the end of the animation. -Dan >-Original Message- >From: jquery-en@googlegroups.com [mailto:[EM

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Dan G. Switzer, II
I think what I'd be more interested is having a method that would allow me to really easily *manually* re-apply effects/events to a jQuery object. For example: $('li') .cache('some.name', function(){ // use the helper function hover to bind a mouseover and mouseout event $(this

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Stefan Kilp [sk-software]
hi, beginners question :-) how do i set monday as first day in week (for germany) Best regards, Stefan Kilp > > jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar) > > I am happy to announce that UI Datepicker version 3 has been released > today. > http://marcgrabanski.com

[jQuery] Re: Request for comments on code snippet.

2007-11-01 Thread Dan G. Switzer, II
>i've just started using jQuery, and I'm having lots of fun. > >I have the following code snippet. What it does is looks for all >instances of a true and false and replaces the >content with an image of a tick and cross. > >The snippet is > > $("td").each(function(){ >

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread tlphipps
I'd like to second this opinion. I'm using livequery more and more, but there are plenty of places where I DON'T use it, so not having it in the core would still be my preference. On Nov 1, 5:53 am, James Dempster <[EMAIL PROTECTED]> wrote: > My less than one pence worth would be I love and use

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Karl Swedberg
Fantastic! Very slick. Also, I really enjoyed your presentations at jQueryCamp07. Keep up the great work, Marc! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 1, 2007, at 12:34 AM, 1Marc wrote: jQuery UI Datepicker v3.0 Released! (Previously n

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread Gordon
As far as I cel tell LiveQuery runs every time the DOM is modified, adding extra overhead to the already slow DOM operations (This isn't jQuery or LiveQuery's fault, it's just a fact of web development that manipulating the DOM is slow). If you can get away without using LiveQuery then it's best

[jQuery] Re: setInterval, ajax call and LiveQuery : strange bug

2007-11-01 Thread Gonzo
Don't use setInterval on methods that use ajax. Instead use setTimeout as the last action in the callback for the ajax request. The ajax request takes time, so making the request at a specific interval may result in requests being processed much closer together than expected. What you really wa

[jQuery] Request for comments on code snippet.

2007-11-01 Thread [EMAIL PROTECTED]
i've just started using jQuery, and I'm having lots of fun. I have the following code snippet. What it does is looks for all instances of a true and false and replaces the content with an image of a tick and cross. The snippet is $("td").each(function(){

[jQuery] Re: Include javafile

2007-11-01 Thread Muhammad Mohsin
i mean in head of the page. listing java doesn't work here but works well when i write this code in end of page On 11/1/07, mohsin <[EMAIL PROTECTED]> wrote: > > > I am using separate javascript file for the function I have written. > When I include this file in header of my page

[jQuery] Re: Superfish, bgiframe, jQuery 1.2 issues...

2007-11-01 Thread Joel Birch
Hi Ryan, You didn't initialise your menu. Put this in a script tag after including Superfish: $(document).ready(function(){ $('ul.nav').superfish(); }); Of course you can also pass in an options object if you wish. Check out the Superfish documentation for more info. http://users.tpg.com.au

[jQuery] Re: [NEWS] Site Using jQuery: TurboTax.com

2007-11-01 Thread Tobias Parent
WLee Hinde wrote: On 10/31/07, Guy Fraser <[EMAIL PROTECTED]> wrote: Lee Hinde wrote: http://cherne.net/brian/resources/jquery.hoverIntent.html On 10/31/07, Guy Fraser <[EMAIL PROTECTED]> wrote: That rocks! I love the use of hover intent on the basic/delux/etc panels - which

[jQuery] Re: .mouseover performance

2007-11-01 Thread Cloudream
E... I wrote mouseMOVE before ... -.-||| sorry for puzzling On Oct 31, 7:51 pm, Wizzud <[EMAIL PROTECTED]> wrote: > Use the hoverIntent plugin. > Using mousemove fires far too many events for your animation to handle > - the instant the mouse moves onto a span, an event fires and the > underb

  1   2   >