[jQuery] Re: question about a javascript syntax

2007-05-17 Thread Erik Beeson
Imagine this: var sayHello = function(name) { alert('Hello, ' + name); } sayHello('World'); If we don't need to call sayHello more than once, we could make the function anonymous (not give it a name) and call it directly by replacing "sayHello" in the second line with the "function..." part fro

[jQuery] Re: question about a javascript syntax

2007-05-17 Thread Ⓙⓐⓚⓔ
You'll find it everywhere! the first is a closure, it allows 'some code' to have real local variables the second is a closure with the added benefit that $ can be used for jQuery. It's used in plugins just to make sure $ is really jQuery's $ and not the $ from another library. there are lots of

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh <[EMAIL PROTECTED]> wrote: I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
It should probably be fixed at the plugin level, ie, if a field is hidden don't try to focus it. was wrking in FF but not in IE (I am on IE 7). On 5/18/07, Mandy Singh <[EMAIL PROTECTED]> wrote: In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh <[EMAIL P

[jQuery] question about a javascript syntax

2007-05-17 Thread Shuai Yang
I found Jörn Zaefferer's "jQuery plugin authoring guide" at http://bassistance.de/2006/12/27/jquery-plugin-authoring-guide/, there i found javascript syntax like this: (function() { // some code here })(); (function($) { // some code here })(jQu

[jQuery] Re: What does jQuery return for 'null'?

2007-05-17 Thread Ⓙⓐⓚⓔ
jQuery always returns a jQuery object. it's never null nor are any of the items in it null. it just may have no items. if ($('#categories').length == 0) { alert('foo'); } On 5/17/07, Yansky <[EMAIL PROTECTED]> wrote: Hi, I was just curious as to what jQuery returns instead of 'null' when it

[jQuery] Re: Next / Previous Links

2007-05-17 Thread Sean Catchpole
Hi Brad, I got the HTML from the link you posted. So try this (somewhere in ): var linklist = new Array(); var currlink = 0; $(function(){ $("#vidLinks, #vidLinks2, #vidLinks3, #vidLinks4").find("li a").each(function(){ linklist[linklist.length] = this.onclick; }); $("#nextLink

[jQuery] What does jQuery return for 'null'?

2007-05-17 Thread Yansky
Hi, I was just curious as to what jQuery returns instead of 'null' when it can't find an element? e.g. if I wanted to run some code if a certain element was on the page, this doesn't return null: if ($('#categories') != null) { alert('foo'); } but getting out of the jQuery object does: if ($('#c

[jQuery] Re: Simple RSS Headlines

2007-05-17 Thread Ⓙⓐⓚⓔ
OOPS! to url: 'http.cgi?http://otherhost.com/rss.xml',

[jQuery] Re: Simple RSS Headlines

2007-05-17 Thread Ⓙⓐⓚⓔ
Erik, that's SWEET! Assuming you do have a cross-domain problem, I have a simple proxy written in perl. (http.cgi) #!/usr/bin/perl use LWP::UserAgent; use CGI; $ua = LWP::UserAgent->new; $ua->agent("NuBrowser/10.7 "); $res = $ua->request(HTTP::Request->new(GET => $ENV{QUERY_STRING})); $q = CGI-

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread stylo~
Big problem on Opera too. Don't bother with headers, they don't work and are more difficult. You MUST add a variable to the url: + new Date().getTime(); Easy enough to add to your calls, but I'm surprised it's still not in the ajax function as an option because a common problem. Earlier threads

[jQuery] Re: Autocomplete plugin

2007-05-17 Thread Shelane Enos
I can't find the message that contained the link to the most current version. Can you send that again (I see the one on your website isn't the most up-to-date). On 5/17/07 3:05 PM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Hi Brian and Shelane, > > the quietness isn't really a bad thin

[jQuery] Re: Simple RSS Headlines

2007-05-17 Thread Erik Beeson
Assuming you don't have cross-domain ajax problems, you could just load the feed as XML data and parse it and display it however you want: http://erikandcolleen.com/erik/projects/jquery/rss/ --Erik On 5/17/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Working on my company site: http://beta-www.m

[jQuery] Re: Star Rating System

2007-05-17 Thread Karl Swedberg
okay, Kim, I threw something together for you tonight when I should have been working. :-) Couldn't pass up the challenge: http://examples.learningjquery.com/rating/ Hope it's what you're looking for. The big drawback to this one is that it doesn't degrade to anything when JavaScript is turn

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom drop down widget populates a hidden field and till then the form validate is put on the hidden field. Once it reaches

[jQuery] Re: canvas graph + draggable node and link

2007-05-17 Thread Benjamin Sterling
Ritesh, I started working with a canvas script a few months back with jquery (can't remember the author, but if you do a search for canvas in the group, i am sure you will find it) and the problem was that when the drawing became to complicated it started slowing the browser down drastically. So

[jQuery] Re: canvas graph + draggable node and link

2007-05-17 Thread ashutosh bijoor
You're right. It cannot be used as is, but if you have the patience, you could use the basic class for drawing primitives on canvas which are all there. Check out chart.src.js. What you need is a simpler version of the basic class called Chart defined at the beginning of the file. I could probably

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-17 Thread DaveG
A global switch/method to turn tooltips on/off, or a method on the jQuery object you used to apply the tooltip? Either this: $.Tooltip.on(); $.Tooltip.off(); This would be better for me as I then don't have to track all the tips. I simply need a way to turn on/off all tips. Or this: var ti

[jQuery] Next / Previous Links

2007-05-17 Thread Bradley Holloway
Hello Everyone! Here is my issue: I need to make the "Previous" and "Next" links function at this URL on the bottom right of the image holder, http://manhattanwest.com/media-center/video-images.php I have had a couple solutions sent to me, one PHP solution and one JS solution. (Thanks Sean

[jQuery] Re: canvas graph + draggable node and link

2007-05-17 Thread bingo
hi Ashutosh, thanks for your reply. I did check jchart. But I wanted something different. I want a blank canvas on which user can create rectangular boxes and join them using links, kind of UML diagram. But I want this boxes to be container so that I can drag and drop div from other places...I th

[jQuery] Re: Simple RSS Headlines

2007-05-17 Thread Mike Alsup
Glen, Check out Google's Feed API: http://code.google.com/apis/ajaxfeeds/ I have a plugin that wraps around it, although it may not be quite what you need: http://www.malsup.com/jquery/gfeed/ Mike On 5/17/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Working on my company site: http://beta-www.m

[jQuery] Simple RSS Headlines

2007-05-17 Thread Glen Lipka
Working on my company site: http://beta-www.marketo.com I am trying to include the last 3 headers from the blog. Is there a jQuery plugin to pull from an RSS feed and turn them into headers? How is this done? I am an RSS newbie, I am embarrassed to say. Thanks for any help. Glen

[jQuery] Re: jcarousel safari

2007-05-17 Thread Karl Rudd
Hmmm I just checked out the demos. At first the first demo with custom buttons: http://sorgalla.com/projects/jcarousel/example_static_horizontal.html Didn't work, but after a refresh it continued to work fine. I'm not sure what's going on. Karl Rudd On 5/18/07, Tom Shafer <[EMAIL PROTECTE

[jQuery] Re: jcarousel safari

2007-05-17 Thread Tom Shafer
That doesnt seem to work. Is there any other way. -TJ On May 15, 11:14 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Karl Rudd wrote: > > > I haven't looked at the page but I'll wager it's one of Safari's "lazy > > update" type problems. Sometimes you change the styling of an object > > and it do

[jQuery] Re: canvas graph + draggable node and link

2007-05-17 Thread ashutosh bijoor
Hi Ritesh I dont think i've got exactly what you need, but with a bit of work, you may be able to use it. Check out the code at http://www.reach1to1.com/sandbox/jquery/jqchart/ The base library that the chart uses could be used to create what you want. Regards Ashutosh On 5/18/07, bingo <[EMAIL P

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Brandon Aaron
On 5/17/07, Daemach <[EMAIL PROTECTED]> wrote: Dagnabbit Brandon, that was far too simple ;) Man I really need to get some sleep - 15 hours a day is to much >.< I understand all too well. :) Glad that worked! -- Brandon Aaron

[jQuery] Re: Star Rating System

2007-05-17 Thread bingo
hi there are some other star ratings that provide option to for half star. You might want to look into that code and modify this star plugin. Personally, I want to do that but that's currently low on my priority regards, Ritesh On May 17, 10:35 am, Kim Johnson <[EMAIL PROTECTED]> wrote: > I per

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Ⓙⓐⓚⓔ
$.ajax is much cooler that the simpler $.post Deprecated doesn't mean it won't work... it just means "May not work on a future release, someday" $.post will alway be available, either in the core or in a compat plugin. On 5/17/07, Brian Ronk <[EMAIL PROTECTED]> wrote: Depreciated? On the

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Brian Ronk
Depreciated? On the docs page it gives no indication for that, and it's updated for 1.1.2. Rob said that it was depreciated in 1.1.1 it looks like. Was this not noted somewhere, or maybe it's depreciated in 1.1.3? On May 17, 4:50 pm, Christopher Jordan <[EMAIL PROTECTED]> wrote: > Karl, > > Ro

[jQuery] Re: Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
I've entered a bug in Trac on this with sample code to illustrate the problem: http://dev.jquery.com/ticket/1201

[jQuery] Re: mouse flicker when animation is taking place in IE

2007-05-17 Thread joomlafreak
Hey, You are spot on. It mean I was thinking right way that there is some smart line of code that will tame IE. Thanks a lot. Jquery group Rocks!!! On May 17, 5:23 pm, "Brian Cherne" <[EMAIL PROTECTED]> wrote: > You are probably using IE6 and some element (or child element) that is > sliding ha

[jQuery] JQuery Powered Site- Just Launched- AskSolvers.com

2007-05-17 Thread Michael E. Carluen
Hi Rey (Bango) and all. I just launched a new jQuery powered site- http://asksolvers.com . It is still pretty new, and still in the process of publicly promoting the site. comments and suggestions welcome. I used jquery's core ajax in some of the forms. The UI u

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Matt Stith
Correct link: http://noteslog.com/post/chili-18-released-today/ On 5/17/07, Chris W. Parker <[EMAIL PROTECTED]> wrote: On Thursday, May 17, 2007 1:12 PM Andrea Ercolino <> said: > Hi everybody. > > I've just released http://notelog.com/category/chili/ Chili 1.8 , > which eventually gets a ve

[jQuery] Re: help troubleshooting a text field focus problem

2007-05-17 Thread Suisso
Exist a great plugin for that http://joshhundley.com/teditable/index.html On 17 maio, 19:40, Marc Jansen <[EMAIL PROTECTED]> wrote: > Hi, > > just a quick guess: > > isn't focus() a pure DOM method? > > Maybe this works: > > $(this).find("input")[0].focus(); > > [EMAIL PROTECTED] schrieb: > > >

[jQuery] Re: help troubleshooting a text field focus problem

2007-05-17 Thread Marc Jansen
Hi, just a quick guess: isn't focus() a pure DOM method? Maybe this works: $(this).find("input")[0].focus(); [EMAIL PROTECTED] schrieb: Hi, I wanted to get some advice on how I can troubleshoot this problem. When I click on an particular block of text, I'd like to have that text replac

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Jörn Zaefferer
Andrea Ercolino wrote: Hi everybody. I've just released http://notelog.com/category/chili/ Chili 1.8 , which eventually gets a very requested feature: the mithical jQuery chainability. Improved speed and better examples are good news too. Cool, speed improvements are great for pages with l

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-17 Thread Jörn Zaefferer
DaveG wrote: 1] I'd like to make a request to have a flag to turn off all tool-tips (http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/). The easiest way to do this might be to retain existing object events, and simply put a flag in the code to not process tip events. I think I've al

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: Gahh...I just fixed it. Apparently, when the validator script tries to focus on a field in a form that is hidden with display: none, ie throws some script error, and stops scripting. I can't believe how long it took to find that out. It was easy enough to p

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
Thanks Brian - I'm going to use hoverIntent for the trigger - it will work well there. On May 17, 2:12 pm, "Brian Cherne" <[EMAIL PROTECTED]> wrote: > What about something like: > > $(a).hoverIntent( handleMouseOver , function(){} ) > > $(b).hover( function(){} , handleMouseOut ) > > You'd get th

[jQuery] Re: Form Validation Plugin

2007-05-17 Thread Jörn Zaefferer
Karl Swedberg wrote: BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll whip something up real fast. Thoughts? The

[jQuery] Re: Autocomplete plugin

2007-05-17 Thread Jörn Zaefferer
Hi Brian and Shelane, the quietness isn't really a bad thing. Most of the stuff that we got requests for has been implemented. And those that come in more slowly give us the foundation for further improvments that need more time. In the meantime I've been heavily busy with other stuff, and I'

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
Dagnabbit Brandon, that was far too simple ;) Man I really need to get some sleep - 15 hours a day is to much >.< On May 17, 2:18 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > You just need to set a flag right before the animation starts ... > something like: > > var isAnimating = true; >

[jQuery] Re: Validate triggering

2007-05-17 Thread Jörn Zaefferer
Emil Ivanov wrote: Sorry, found the solution myself. The $.validate() method return an object, on which .form() can be invoked and it does just what I needed. Is there anything I could change to make this solution easier to find? Seems like it wasn't as obvious as it should be. -- Jörn Zaef

[jQuery] canvas graph + draggable node and link

2007-05-17 Thread bingo
Hi, I am wondering has any ever tried building a canvas library based on jQuery. I don't mean to say line/bar graph but canvas graph like yahoo pipes where you can create new boxes and link them through lines. Please let me know if there is one that I can easily integrate with my project Regards

[jQuery] Re: jqModal question -workaround

2007-05-17 Thread Shelane
OK, so I have a work around. I start off with an empty div with an ID of 'modals'. In my statusChange function, I added these two lines: $('#modals').empty(); $('#modals').html(''); So it now looks like this: statusChange = function(scope){ $('.invited, .accepted, .declined', scope).c

[jQuery] help troubleshooting a text field focus problem

2007-05-17 Thread [EMAIL PROTECTED]
Hi, I wanted to get some advice on how I can troubleshoot this problem. When I click on an particular block of text, I'd like to have that text replaced by a editable INPUT text field with the value of the text, with the cursor automatically in the text field. Unfortunately, the following block

[jQuery] Re: mouse flicker when animation is taking place in IE

2007-05-17 Thread Brian Cherne
You are probably using IE6 and some element (or child element) that is sliding has a css background image... just a guess... http://learningtheworld.eu/2007/performance/ #2 Enforce caching I think is the safest way to fix this (without writing nasty cross-browser code). Brian. On 5/17/07, jooml

[jQuery] Re: Hide DIV on page click help

2007-05-17 Thread Jeff
That works great, but how do I get it to ignore clicks to the div itself? Thanks On May 15, 9:43 pm, RobG <[EMAIL PROTECTED]> wrote: > On May 16, 1:36 am, Jeff <[EMAIL PROTECTED]> wrote: > > > I am trying to add some functionality to my page where a user clicks > > on a link which makes a menu l

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Brandon Aaron
You just need to set a flag right before the animation starts ... something like: var isAnimating = true; Then in the callback of the animation ... just set it to false. The mouseout would need to check isAnimating before being allowed to do anything. -- Brandon Aaron On 5/17/07, Daemach <[E

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Brian Cherne
What about something like: $(a).hoverIntent( handleMouseOver , function(){} ) $(b).hover( function(){} , handleMouseOut ) You'd get the graze protection from hoverIntent and the mouseOut on another object. It's a little wasteful using empty functions like that... but it might help. In this case

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Muescha
try this starting point: http://noteslog.com/ On 17 Mai, 22:26, "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > On Thursday, May 17, 2007 1:12 PM Andrea Ercolino <> said: > > > Hi everybody. > > > I've just released http://notelog.com/category/chili/Chili 1.8 , > > which eventually gets a very re

[jQuery] Re: simple div with scrollbar plugin

2007-05-17 Thread Christopher Jordan
Are you talking about something more than: ... that? This will automatically add the scroll bar when your div gets full enough to warrant one. What exactly are you looking for? Chris Tom Shafer wrote: I am in need of a simple div with scrollbar plugisn. I am not quite sure how to writ

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Karl, Rob Gonda made the comment on his blog in responding to one of his readers. He said: "... BTW, the $.post() function was deprecated with jQuery 1.1 in favor for .ajax()." That's where I read it

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Hmm... I just read that today, or last night I think. Okay. I'll put up or shut-up. I'll try and find where I read that. :o) Chris Karl Swedberg wrote: I could be wrong, but I don't think $.post() is deprecated. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.

[jQuery] mouse flicker when animation is taking place in IE

2007-05-17 Thread joomlafreak
I have a very simple question. Whenever fading out, fading in, slidedown, slideup etc animations occur (for me on my notebook), the IE shows flickering of mouse over the screen as if it is downloading something. Thats does not happen in FF. I wonder why does this happen. Im sure it is not a bug bu

[jQuery] Re: simple div with scrollbar plugin

2007-05-17 Thread Alexandre Plennevaux
Jscrollpane: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Shafer Sent: jeudi 17 mai 2007 21:34 To: jQuery (English) Subject: [jQuery] simple div with scrollbar plugin

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
That plugin is cool - I looked at it before. Unfortunately I'm triggering the close and open from two different elements and using the mouseout event on the menu itself to close. The problem is that if the mouse leaves the object, it starts the slide animation. If the mouse grazes the div even

[jQuery] Re: simple div with scrollbar plugin

2007-05-17 Thread joomlafreak
Do you expect that plugin to only create scrollable divs??? On May 17, 4:34 pm, Tom Shafer <[EMAIL PROTECTED]> wrote: > I am in need of a simple div with scrollbar plugisn. I am not quite > sure how to write one. Is there one out there? > > Thanks

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Karl Swedberg
I could be wrong, but I don't think $.post() is deprecated. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 17, 2007, at 4:31 PM, Christopher Jordan wrote: Also, Brian, $.post() has been deprecated in favor of $.ajax(). where you would write someth

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Karl Swedberg
Looking forward to seeing it. Unfortunately, when I try to go to the URL, it redirects to: http://www.domains.faststores.com/find.html/category/chili/ and gives me a 404. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 17, 2007, at 4:11 PM,

[jQuery] simple div with scrollbar plugin

2007-05-17 Thread Tom Shafer
I am in need of a simple div with scrollbar plugisn. I am not quite sure how to write one. Is there one out there? Thanks

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Also, Brian, $.post() has been deprecated in favor of $.ajax(). where you would write something like: $.ajax({ type: 'POST', url: 'page.php', datatype: 'html', // or json, or xml or script depending on what's getting returned data: {'name':'Joe', 'age':'24',...},//also I think you c

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Chris W. Parker
On Thursday, May 17, 2007 1:12 PM Andrea Ercolino <> said: > Hi everybody. > > I've just released http://notelog.com/category/chili/ Chili 1.8 , > which eventually gets a very requested feature: the mithical jQuery > chainability. Improved speed and better examples are good news too. > > I hop

[jQuery] Chili 1.8 gets chainability

2007-05-17 Thread Andrea Ercolino
Hi everybody. I've just released http://notelog.com/category/chili/ Chili 1.8 , which eventually gets a very requested feature: the mithical jQuery chainability. Improved speed and better examples are good news too. I hope you'll enjoy it. --Andrea -- View this message in context: http://w

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Brian Cherne
My hoverIntent plug-in may help... but in the opposite way of thinking about your problem -- it delays the onMouseOver call until the users cursor comes to rest (or slows significantly) over the target object. http://cherne.net/brian/resources/jquery.hoverIntent.html Brian. On 5/17/07, Daemach

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Remy Sharp
Ah ha! And I believe I have reinvented a wheel. Doh! On May 17, 5:37 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Isn't that what .hover() does? > > $(...).hover(function(){ > $(this).addClass("hilite");}, function(){ > > $(this).removeClass("hilite"); > > }); > > --John > > On 5/17/07, Re

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Jake McGraw
$.post() accepts a collection of name/value pairs, I don't think multi-dimensional arrays/objects work, so what you've already suggested: $post('page.php',{name:'Joe',age:'24'},...); will work. - jake On 5/17/07, Brian Ronk <[EMAIL PROTECTED]> wrote: This is actually probably more relevant

[jQuery] getJSON() or post() parameter question

2007-05-17 Thread Brian Ronk
This is actually probably more relevant to post() since I can concatenate the parameters with the link for getJSON(), but here we go anyway. I am pulling JSON information from the server for menu links, and then creating the menu off of that. Let's say that I have {page: 'update.php', linkname:

[jQuery] Re: Tablesorter: what am I doing wrong?

2007-05-17 Thread Sarcastic Zombie
On May 17, 3:20 pm, Daemach <[EMAIL PROTECTED]> wrote: > I don't know tablesorter, but here is another potential option - it's > not very configurable right now, but some interesting things are > coming soon. I'm just trying to work out some performance issues in * > %#%$!%$ Internet Explorer. >

[jQuery] Re: Tablesorter: what am I doing wrong?

2007-05-17 Thread Sarcastic Zombie
> I'm trying to use tablesorter on a dynamically generated table. Most > of the columns sort fine. However, I'm having issues with the number > columns... Victory! I figured out the problem. I have a tendency to structure my tables like this: data! The rea

[jQuery] Re: Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
Yes, that's exactly what I'm looking for ... thanks. Is there a support group for this plug-in? I've got some problems with it working in an "overflow-y: auto" block. Cheers, Sandy

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Jimmy Glass
Nice... That's beautiful.. If you use ColdFusion #JSON.Serialize(Response)# Thanks for the recommendations... Jimmy G From: Charles Capps <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2007 11:52 AM To: jquery-en@googlegroups.com Subject: [j

[jQuery] Re: Tablesorter: what am I doing wrong?

2007-05-17 Thread Daemach
I don't know tablesorter, but here is another potential option - it's not very configurable right now, but some interesting things are coming soon. I'm just trying to work out some performance issues in * %#%$!%$ Internet Explorer. http://ideamill.synaptrixgroup.com/?p=7 On May 17, 7:33 am, Sar

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
I have a slightly different problem - I have a vertical menu that gets displayed when you mouse over a link using slideDown. I attached a slideUp event to the mouseout event of the containing div, but if the pointer moves back over the menu before the animation is done it restarts the animation r

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Bil Corry
Charles Capps wrote on 5/17/2007 11:51 AM: When in doubt, whack'em all. Pragma: no-cache Cache-control: no-cache, must-revalidate Expires: (some date in the past in the proper format) I'm not sure which one IE follows, but here's mine: Expires: -1 Last-Modified: Thu, 17 May

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Charles Capps
When in doubt, whack'em all. Pragma: no-cache Cache-control: no-cache, must-revalidate Expires: (some date in the past in the proper format) Jimmy Glass wrote: > Hi Jeff, > That is what I was thinking... But, I'm not sure of the key/value pair > to add to the response. Do you know? > > Jimmy G

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Jimmy Glass
Hi Jeff, That is what I was thinking... But, I'm not sure of the key/value pair to add to the response. Do you know? Jimmy G From: "Jeffrey Kretz" <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2007 11:19 AM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] history plugin examples

2007-05-17 Thread Benjamin Sterling
Hey all, Wanted to see if anyone is using the history plugin so I can get better examples on how to use it on bigger sites. Thanks. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Jeffrey Kretz
If you can control the server-side pages that are supplying your ajax requests, you can also add response headers to the http response telling the browser to not to cache it. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Sent: Thursd

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Gordon
One trick I found was to simply do: $.get (myUrl + '?uid=' + math.random(), myAjaxCallBack) On May 17, 5:49 pm, "Jimmy Glass" <[EMAIL PROTECTED]> wrote: > Hi... > So... I just noticed that IE is caching my AJAX requests (I code to Firefox, > and then test IE later). I expect some of you have ru

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Gordon
On May 17, 5:58 pm, Emil Ivanov <[EMAIL PROTECTED]> wrote: > You mentioned one of the solutions - to append something like '? > param=' + new Date(); > > The other thing you can do is use POST, since IE won't cache POST > request. I've tried telling it with headers, that it should not cache > it

[jQuery] Re: chaining question

2007-05-17 Thread Bil Corry
bleen wrote on 5/16/2007 7:54 AM: If the function below (which is called in a mouseover event) is run too many times, too quickly it doesn't work (i.e. the html in question is not changed) I played with it a bit in FF2. If you do this: $("#popular_quicksearch_content").hide().html(

[jQuery] Re: Star Rating System

2007-05-17 Thread Kim Johnson
I personally would still love to see the option built in for half star ratings; I've been waiting on integrating the plugin until such a thing is available. :) (half star ratings meaning, you can rate something 3.5 stars, as opposed to just the average showing up as 3.5 stars once the integer rat

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-17 Thread Rey Bango
Added: http://skybus.com/home.aspx Skybus - Travel information http://www.supportthetroopsendthewar.com/ Support the troops. End the war. - US Presidential Nominee John Edward's site to help end the war in Iraq http://www.krix.com.au/ Krix - The Krix team manufactures high quality loudspeaker

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-17 Thread Rey Bango
Sweet! Luis is probably using the new AjaxCFC for jQuery Rey Chris Jordan wrote: I added the ColdBox ColdFusion Framework website to the list. They're using jQuery + thickbox. Chris On May 16, 9:34 am, rolfsf <[EMAIL PROTECTED]> wrote: I just spottedjqueryon John Edward's site,http://www.s

[jQuery] Re: IE Caching AJAX calls

2007-05-17 Thread Emil Ivanov
You mentioned one of the solutions - to append something like '? param=' + new Date(); The other thing you can do is use POST, since IE won't cache POST request. I've tried telling it with headers, that it should not cache it, but it still does, so POST is the solution. Regards, Emil Ivanov On

[jQuery] IE Caching AJAX calls

2007-05-17 Thread Jimmy Glass
Hi... So... I just noticed that IE is caching my AJAX requests (I code to Firefox, and then test IE later). I expect some of you have run into this problem before. Of course, I can create unique request string by appending a "Request Identifer" to each URL. I found this great UUID javascript

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Remy Sharp
I've written a plugin that will fire a mouseout when the mouse leaves the container DIV, rather than moves over a sub-element: http://remysharp.com/2007/05/17/true-mouseout-jquery-plugin/ Hope it helps. On May 16, 1:36 pm, SamCKayak <[EMAIL PROTECTED]> wrote: > Just getting started... > > I hav

[jQuery] Re: what is the license of this beautiful plugin innerfade

2007-05-17 Thread Bryan
although I think the correct legal answer is all rights reserved unless you can find reference to the contrary. On May 16, 4:07 pm, joomlafreak <[EMAIL PROTECTED]> wrote: > Thanks Sean! > > On May 16, 7:02 pm, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > > > If there is no license, then it's pro

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-17 Thread Chris Jordan
I added the ColdBox ColdFusion Framework website to the list. They're using jQuery + thickbox. Chris On May 16, 9:34 am, rolfsf <[EMAIL PROTECTED]> wrote: > I just spottedjqueryon John Edward's > site,http://www.supportthetroopsendthewar.com/ > > I was curious about the script they'reusingfor t

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread John Resig
Isn't that what .hover() does? $(...).hover(function(){ $(this).addClass("hilite"); }, function(){ $(this).removeClass("hilite"); }); --John On 5/17/07, Remy Sharp <[EMAIL PROTECTED]> wrote: I've written a plugin that will fire a mouseout when the mouse leaves the container DIV, rather tha

[jQuery] Re: chaining question

2007-05-17 Thread Jake McGraw
You may want to try: hoverIntent http://cherne.net/brian/resources/jquery.hoverIntent.html I've never used it, but people had great things to say about it. - jake On 5/17/07, Bil Corry <[EMAIL PROTECTED]> wrote: bleen wrote on 5/17/2007 7:32 AM: > http://www.nypost.com/testing/test_jquery

[jQuery] Re: chaining question

2007-05-17 Thread Bil Corry
bleen wrote on 5/17/2007 7:32 AM: http://www.nypost.com/testing/test_jquery_problem.htm http://www.nypost.com/testing/test_jquery_noprob.htm ideas?? Both of your test files are using the same script (two scripts that are named differently, but both are identical in content): http://www.nyp

[jQuery] Re: My first plugin - expand/collapse

2007-05-17 Thread Sean O
Hi Tom, Here's a few links for inspiration from similar projects: http://labs.activespotlight.net/jQuery/Xpander.html http://www.learningjquery.com/2007/02/more-showing-more-hiding Might I suggest a demo on your plugin article? SEAN O http://www.sean-o.com Tom Holder wrote: > >

[jQuery] Re: jQuery is() with more than 1 element

2007-05-17 Thread Gordon
http://groups.google.com/group/jquery-en/browse_thread/thread/2158766eb92be341/# should include the code I'm writing at the most recent post or near it. On May 17, 3:14 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Here is a list of the changes thus far:http://tinyurl.com/2t2we5 > > #977 is th

[jQuery] Re: NEWS: Wordpress 2.2 Switches to jQuery

2007-05-17 Thread Glen Lipka
On 5/17/07, Rey Bango <[EMAIL PROTECTED]> wrote: Absolutely! We certainly have one of the best open source projects out there. :o) joomlafreak wrote: > Jquery is making its presence felt everywhere > > > > On May 16, 10:05 pm, Rey Bango <[EMAIL PROTECTED]> wrote: >> You can read the detai

[jQuery] Re: Controlling Scroll bars ...

2007-05-17 Thread Marc Jansen
ZebZiggle schrieb: Hi there ... I'm working on a site with a sort of Google Reader feel to it, but when you vote on the articles they go away with .hide() The problem is this causes the screen to be in the wrong position (skipping past several unread articles) ... I'd like to set the vertical

[jQuery] Re: New plugin: equalize column heights

2007-05-17 Thread thomasdeater
I've made another update to the plugin. It no longer requires the jquery dimensions plugin. http://www.tomdeater.com/jquery/equalize_columns/ See also Michael Futreal's vjustify plugin which I recently discovered. He has some good information about an issue involving images with unspecified heig

[jQuery] Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
Hi there ... I'm working on a site with a sort of Google Reader feel to it, but when you vote on the articles they go away with .hide() The problem is this causes the screen to be in the wrong position (skipping past several unread articles) ... I'd like to set the vertical scroll bar position t

[jQuery] Star Rating System

2007-05-17 Thread Mario Moura
Hi Folks I would like to suggest a improvement in this amazing plugin http://php.scripts.psu.edu/rja171/widgets/rating.php look http://www.imdb.com/title/tt0413300/ You have User Rating: 7.4/10 average . This average could be in a container for example Select 1 2 . 7 10 So two things

  1   2   >