[jQuery] BlockUI displayBox() thickbox alternative?

2008-04-30 Thread Nathaniel Whiteinge
I really dug the displayBox() thickbox from BlockUI v1.33, but it's been removed in the latest version. Thickbox implementations that have animation, and that require css and image files are much too heavy for my taste. Anyone know of an ultra-lightweight thickbox implementation to replace

[jQuery] Re: jCarousel: HTML structure vs CSS vs documentation

2008-04-30 Thread Jan Sorgalla
Thanks, its fixed now. Jan On 28 Apr., 12:45, Glenn Nilsson [EMAIL PROTECTED] wrote: Sorry, wrong line number, 24, not 28. * div class=jcarousel-skin-namejcarousel-container On Mon, Apr 28, 2008 at 12:42 PM, Glenn Nilsson [EMAIL PROTECTED] wrote: Hi, just upgraded thejCarouselplugin

[jQuery] Re: jCarousel circular bug in IE7, separate bug in Firefox (mac)?

2008-04-30 Thread Jan Sorgalla
Hi, i've fixed this. Just download the package again. Jan On 28 Apr., 23:28, ericHurst [EMAIL PROTECTED] wrote: I am usingjCarouselv0.2.3 with jQ 1.2.3. I'm having a problem on IE7 where the item that should be displayed on the left side, next to the back arrow, is cut out. Not only does

[jQuery] Working with other library

2008-04-30 Thread div
Ok, I know that there are some posts about this, and I've read them all, however not being really bright at this particular thing, I'm in a need of some assistance. I would like to understand how do you actually use the no conflict jquery option to work with other library, and if you have the

[jQuery] Cycle Plugin - additional manual link to a particular slide

2008-04-30 Thread emjem
Hi there I've used the Cycle plugin to build a shuffling div with text content, that uses the pagerAnchorBuilder to link the nav to each slide. That all works fine. $('#shuffledeck').cycle({ fx:'shuffle', cssAfter: { top: -20,

[jQuery] Moving label text to input

2008-04-30 Thread Emil
Hi, I have this small script that moves the text from a label and places it in a input field next to the label, like such: function moveLabelToInput(){ $(label.moveToInput).each(function(){ var lblText = $(this).text();

[jQuery] Re: ui.datepicker causes IE operation aborted

2008-04-30 Thread jquiker
We're using the older jQuery 1.2.1, and I've tried several methods, including your suggestions below. None work in that blasted browser. This is the declaration code I'm trying to use in our portal: lt;style type=text/cssgt;@import url(/css/jquery/ui.datepicker.css);lt;/stylegt; lt;script

[jQuery] size of an ul

2008-04-30 Thread Ray Mckoy
Hi all. Can i know the number of li in a ul with jquery?. Thank you all.

[jQuery] Re: Cycle Plugin - additional manual link to a particular slide

2008-04-30 Thread Mike Alsup
Hi there I've used the Cycle plugin to build a shuffling div with text content, that uses the pagerAnchorBuilder to link the nav to each slide. That all works fine. $('#shuffledeck').cycle({ fx:'shuffle', cssAfter: { top: -20,

[jQuery] Re: BlockUI displayBox() thickbox alternative?

2008-04-30 Thread Mike Alsup
You can still use blockUI in that way even though the displayBox function has been removed in the 2.x line. See the image box demo on the demo page: http://www.malsup.com/jquery/block/#demos Mike On Wed, Apr 30, 2008 at 2:36 AM, Nathaniel Whiteinge [EMAIL PROTECTED] wrote: I really dug

[jQuery] Re: size of an ul

2008-04-30 Thread Jason Huck
$('ul').children().size(); - jason On Apr 30, 2:58 am, Ray Mckoy [EMAIL PROTECTED] wrote: Hi all. Can i know the number of li in a ul with jquery?. Thank you all.

[jQuery] jCarousel - Multiple rows in horizontal mode (or cols in vertical mode)

2008-04-30 Thread tekanet
Hello folks, I need to put multiple items in a carousel, placed on rows and cols, with horizontal scrolling. Examples. Now my carousel looks like this: - [ITEM] [ITEM] [ITEM] - I want it like this: [ITEM] [ITEM] [ITEM] - [ITEM] [ITEM] [ITEM] - [ITEM] [ITEM] [ITEM] Is this possibile?

[jQuery] Jquery UI Doc?

2008-04-30 Thread Giovanni Battista Lenoci
Hi, till now for my draggable and droppable effects I used Interface plugin. Now I want to take a look at jquery ui, but I'm wondering if exists a documentation better than the one on docs.jquery.com. For example: draggable( options )Returns: jQuery Creates new draggables on the nodeset

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Jason Huck
Twitter posts (or tweets) are limited to 140 characters, so they're not going to replace full-fledged announcements. Rather, most of the time, they'll just be headlines with a URL which points to...you guessed it...the plugin repository, the main site, this list, various blogs, etc. So, I

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Rick Faircloth
Hi, Rey... First, a disclaimer... I'm not a Twitter user, so I don't get it, as I've heard Twitter users say of no-users. :o) That being said, I wanted to ask why another source of info, beyond the jquery.com site, the ton of individual plug-in sites, doc sites, etc, is needed. It seems that

[jQuery] Re: Moving label text to input

2008-04-30 Thread Jason Huck
All you should need to do is break the chain, since 'this' will still refer to the label until you're inside another function, making the call to .next() superfluous anyway. However, stuffing the id of the input you want to select into its own variable might be a tiny bit easier to read. Try

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Rick Faircloth
Thanks, Jason... just wanted to make sure I wasn't getting left out of the loop or had to subscribe to yet *another* source of info... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Huck Sent: Wednesday, April 30, 2008 8:31 AM

[jQuery] Re: size of an ul

2008-04-30 Thread Ray Mckoy
Jason Huck escribió: $('ul').children().size(); - jason On Apr 30, 2:58 am, Ray Mckoy [EMAIL PROTECTED] wrote: Hi all. Can i know the number of li in a ul with jquery?. Thank you all. Thank you very much. That's what i need.

[jQuery] Form Submit Function

2008-04-30 Thread dynamic web dev
Trying to run a function when a form in an iframe is submitted. The form is submitted from a parent frame. When running the function from within the iframe (button on the form), the submit function works as it should. When submitting the form from outside the form, the submit function does

[jQuery] Re: help optimizing this code ?

2008-04-30 Thread bruno desthuilliers
On 29 avr, 14:55, Dave Methvin [EMAIL PROTECTED] wrote: I have this piece of code that works fine, but is a bit slow (on a page with =~ 25 container and =~ 70 buttons, it takes about 2 to 3 seconds to complete, even after I made my best to narrow down the $ (elt) set on which it

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Rey Bango
Jason described it perfectly and you won't be left out of the loop because you don't use Twitter. The mailing list is still the main point of communication for the jQuery project. You would be surprised, though, how many people do not subscribe to the mailing list but are on Twitter and

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Jake McGraw
@jquery doc.jquery.com is down :-P - jake On Wed, Apr 30, 2008 at 9:27 AM, Rey Bango [EMAIL PROTECTED] wrote: Jason described it perfectly and you won't be left out of the loop because you don't use Twitter. The mailing list is still the main point of communication for the jQuery project.

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Jake McGraw
*http://docs.jquery.com/ On Wed, Apr 30, 2008 at 9:45 AM, Jake McGraw [EMAIL PROTECTED] wrote: @jquery doc.jquery.com is down :-P - jake On Wed, Apr 30, 2008 at 9:27 AM, Rey Bango [EMAIL PROTECTED] wrote: Jason described it perfectly and you won't be left out of the loop because

[jQuery] Re: Jquery UI Doc?

2008-04-30 Thread motob
Clicking on draggable( options ) will give you this page: http://docs.jquery.com/UI/Draggables/draggable#options. From there, click on the options tab. The same holds true to access the droppable options. On Apr 30, 8:06 am, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi, till now for my

[jQuery] $(#divid).load(page.html) not loading in IE 6 or 7 works fine in FF

2008-04-30 Thread jquery_n00b
div id=”wtf”WTF???/div script type=text/javascript language=javascript $(document).ready(function(){ $(div#wtf).load(/home.html,function(responseText){ alert(responseText);}); }); /script It works fine in FF but not in IE, the thing is in Fiddler, I see the get happen and the text from the

[jQuery] Re: Jquery UI Doc?

2008-04-30 Thread Giovanni Battista Lenoci
On 30 Apr, 15:22, motob [EMAIL PROTECTED] wrote: Clicking on draggable( options ) will give you this page:http://docs.jquery.com/UI/Draggables/draggable#options. From there, click on the options tab. The same holds true to access the droppable options. Thank you, I didn't see it

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Rick Faircloth
Good deal... thanks, Rey, for the info and for all you and the team do to keep the jQuery wheels turnin'! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, April 30, 2008 9:28 AM To:

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Rey Bango
My pleasure Rick. We respect and value the jQuery community and want to ensure that jQuery developers get any info that can make their jobs easier. Rey... Rick Faircloth wrote: Good deal... thanks, Rey, for the info and for all you and the team do to keep the jQuery wheels turnin'! Rick

[jQuery] Scroll, jump, goTo etc problem

2008-04-30 Thread theVibe
Hi, This is what i want to use. onClick jump to 'imgIndex': [...] a class=head href=# onclick=jumpToImg(6); return false;Some Info/a a class=head href=# onclick=jumpToImg(9); return false;More Info/a [...] ul id=carousel li.../li li.../li li.../li ... /ul [...] function

[jQuery] Superfish image menu

2008-04-30 Thread redant34
This may have been asked before. I'm not a CSS expert. I wanted to make a menu such as this: http://www.wireless.att.com/cell-phone-service/welcome/index.jsp?WT.srch=1 I have it set up where each menu item image has both states in the image and on rollover moves accordingly. I added the

[jQuery] Superfish image menu

2008-04-30 Thread redant34
This may have been asked before. I'm not a CSS expert. I wanted to make a menu such as this: http://www.wireless.att.com/cell-phone-service/welcome/index.jsp?WT.srch=1 I have it set up where each menu item image has both states in the image and on rollover moves accordingly. I added the

[jQuery] Re: AutoComplete - how to update the local data array?

2008-04-30 Thread Adam
Awesome! Thank you thank you thank you.

[jQuery] Re: Superfish image menu

2008-04-30 Thread redant34
I guess I don't need the superfish plugin really. I don't get where you put this: $(document).ready(function(){ $(ul.nav).superfish(); }); what is a plugin and where do you put it?

[jQuery] listen plugin along with cluetip plugin

2008-04-30 Thread Alexandre Plennevaux
hello! i have a table displaying 3000 rows and would like to use the cluetip to display some info about each contact via ajax. of course, 3000 mouseover event binding is not reasonable so i think my problem qualifies for the use case addressed by the listen plugin. but i don't know how to

[jQuery] Re: jCarousel circular bug in IE7, separate bug in Firefox (mac)?

2008-04-30 Thread ericHurst
Excellent. Thanks, Jan. I found that Firefox (Mac) still had the hitch in the animation. However, I was able to remedy this for my purposes by setting 'animation' to 300 miliseconds. Also, I redid the styles a bit for this particular project. The combo of the two seemed to fix that hitch.

[jQuery] Re: Giving more parameters to the async load function ?

2008-04-30 Thread Jörn Zaefferer
jayg schrieb: I need to set up dynamic urls with async trees as well, though I am using rails, so I am looking for something more like 'foo/bar/1', but same functionality. The problem I have with the idea to use source.php?id=firsttree or something similar is that I don't know how many

[jQuery] Re: Form Plugin

2008-04-30 Thread Mike Alsup
Is there a way to make this dynamic? I have ~ 100 lines that need to be written into a table of data which a check box indicating status of a project (complete or not). Each checkbox has an id=check1 or check2 etc. What I'm looking to do is to trigger a function that submits

[jQuery] Re: BlockUI displayBox() thickbox alternative?

2008-04-30 Thread Nathaniel Whiteinge
On Apr 30, 5:03 am, Mike Alsup [EMAIL PROTECTED] wrote: You can still use blockUI in that way even though the displayBox function has been removed in the 2.x line. See the image box demo on the demo page: Oh. So you can. Thanks, Mike. And thanks for BlockUI! :-) Hey FYI, I tried to email

[jQuery] Re: treeview - async - can we get a loading icon like this?

2008-04-30 Thread Jörn Zaefferer
rolf m schrieb: I'm sorry - I didn't mean the graphic specifically, but an option to show a loading graphic while the selected tree branch is loading and perhaps it's already there, but it's not obvious to me I've added support for that, and modified the demo accordingly:

[jQuery] Re: BlockUI displayBox() thickbox alternative?

2008-04-30 Thread Nathaniel Whiteinge
On Apr 30, 10:14 am, Nathaniel Whiteinge [EMAIL PROTECTED] wrote: So if you're taking votes I say screw 'em, the overlay should show by default on Linux. You've got a boolean setting for this in 2.0. I'm having a bad run of running my mouth before reading, it seems. :-P Anyway, thanks again.

[jQuery] Need some advice on how to proceed...

2008-04-30 Thread Rick Faircloth
Hi, all... I've got a Browse Properties page on a real estate website. You can see the page in question here: http://c21ar.wsm-dev.com/cfm/browse-properties.cfm On the page at the top of the listings, I have checkboxes for property type options for browsing. I want the user to be able to

[jQuery] Hide/Close div when clicked outside of it.

2008-04-30 Thread Aleksandr
Hi All, I am showing a div on click of a hyperlink. Now, when i click elsewhere in the document other than the div itself, then i want to hide the showing div... Is there any easy way to do this? I've already try: $('html').click(function() { $('#divLoginBox1').hide(); }); and

[jQuery] Cluetip showing content below fold

2008-04-30 Thread sprak
Greetings; I am using Cluetip to fetch content via AJAX. I have tried setting the position option to bottomTop, mouse, and auto. The content fetches fine, and the tooltip displays. However, if the tip opens close to the bottom of the browser window (FF2 and IE7), the tip is not shifted up to

[jQuery] Re: Need some advice on how to proceed...

2008-04-30 Thread ripple
Why couldn't save the clicked values in a session cookie? Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all... I've got a Browse Properties page on a real estate website. You can see the page in question here: http://c21ar.wsm-dev.com/cfm/browse-properties.cfm On the page at the

[jQuery] Re: $(#divid).load(page.html) not loading in IE 6 or 7 works fine in FF

2008-04-30 Thread Jack Killpatrick
try this: script type=text/javascript language=javascript $(document).ready(function(){ setTimeout(function(){ $(div#wtf).load(/home.html,function(responseText){ alert(responseText); }); },100); }); /script If that doesn't

[jQuery] Re: Need some advice on how to proceed...

2008-04-30 Thread Rick Faircloth
Saving them as a session variable is what I had in mind. The problem is, I don't have a clue how to get the value of the checked boxes with jQuery as they are checked and have CF turn those values into session variables. Suggestions? Hints? Thanks for the reply. Rick From:

[jQuery] Re: listen plugin along with cluetip plugin

2008-04-30 Thread Ariel Flesler
I don't know much about ClueTip, whether you can call it like that, or it's meant to be called once at start. What I can tell you is, instead of 'hover', use 'mouseenter'. This is a fake event, so I don't know how well it will play with Listen, you'll need to experiment. Cheers -- Ariel Flesler

[jQuery] Re: Need some advice on how to proceed...

2008-04-30 Thread Josh Nathanson
Hi Rick, It looks like you would need to intercept the pagination link clicks; use jQuery to get the checkbox values, and add them onto the end of the href as a query string; and then do a window.location.href with the new href you've made with the checkbox values. You can probably get

[jQuery] :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Wes Duff
Does anyone know a work around or how to add a value to :contains. Here is my code I am working with $('.printer_element h2').each(function (i) { if($(this).nextAll().size() 0) { //do nothing } else { //Here we

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-04-30 Thread Wes Duff
Off the top of my head --- Try something like this $('div#mydiv').clcik(function(){$('div#mydiv').show();}); //click to show div $('div:not(#mydiv)').click(function(){$('div#mydiv').hide()}); click anywhere else to hide div ## Problem just thought of If you are using a wrapper div then you will

[jQuery] Re: treeview - async - can we get a loading icon like this?

2008-04-30 Thread rolfsf
Sweet! thanks Jörn Was there any change to the javascript? It appears that you're just using a .placeholder class on a span, that gets replaced...? rolf On Apr 30, 9:17 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: rolf m schrieb: I'm sorry - I didn't mean the graphic specifically, but an

[jQuery] tablesorter bug?

2008-04-30 Thread A13thGuest
The tablesorter is acting goofy and I'm wondering if anyone has any insight to the problem or a way to fix it. I'm adding rows to a table then calling tablesorter: $('#myTable').tablesorter(); Works fine. If I clear rows from the table then add more rows, I call tablesorter again:

[jQuery] Re: Scroll, jump, goTo etc problem

2008-04-30 Thread Jan Sorgalla
Hi, check the external controls example: http://sorgalla.com/projects/jcarousel/examples/static_controls.html Jan On 30 Apr., 16:03, theVibe [EMAIL PROTECTED] wrote: Hi, This is what i want to use. onClick jump to 'imgIndex': [...] a class=head href=# onclick=jumpToImg(6); return

[jQuery] Re: jCarousel - Multiple rows in horizontal mode (or cols in vertical mode)

2008-04-30 Thread Jan Sorgalla
Hi, you can put whatever you want inside the li items. It can be a single image or a table of 9 images. Jan On 30 Apr., 13:00, tekanet [EMAIL PROTECTED] wrote: Hello folks, I need to put multiple items in a carousel, placed on rows and cols, with horizontal scrolling. Examples. Now my

[jQuery] ui selectable

2008-04-30 Thread Sam Sherlock
Hi All, I am making a AJax File Manager using jQuery and a bunch of plugins within the interface I am having some trouble with selectable here is my code (from within a document ready block) $(#iconScroller div.folder, #iconScroller div.file).selectable(); here is my mark up

[jQuery] Re: :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Hamish Campbell
First of all, in this: $('ul#list_container a:contains(hidden_div)') The word 'hidden_div' is just a string literal - ie it's just looking for the word hidden_div. If you want to look for the text you've assigned to the _variable_ hidden_div you just need to go: $('ul#list_container

[jQuery] Re: ui selectable

2008-04-30 Thread Sam Sherlock
sorted the first issue (I need to change some css) and found the answer to the second question to be yes however I don't see multiple selectees being dragged any how, I have enough to be making head way on - S 2008/4/30 Sam Sherlock [EMAIL PROTECTED]: Hi All, I am making a AJax File

[jQuery] Re: tablesorter bug?

2008-04-30 Thread Carl Von Stetten
After making changes to the table, use this instead: $('#myTable').trigger(update); // rebuilds the tablesorter data cache If you have added rows and need to resort, try either this: $(#myTable).trigger(sorton,[sorting]); // where [sorting] is the JS array of the sorting column info (see

[jQuery] Re: treeview - async - can we get a loading icon like this?

2008-04-30 Thread Jörn Zaefferer
The script changed, yes. It adds the class. But nothing more. Jörn On Wed, Apr 30, 2008 at 8:34 PM, rolfsf [EMAIL PROTECTED] wrote: Sweet! thanks Jörn Was there any change to the javascript? It appears that you're just using a .placeholder class on a span, that gets replaced...? rolf

[jQuery] slideUp slideDown and mouseover mouseout

2008-04-30 Thread Waters
Hi all - new to jQuery - a case of trying to run before I walk for sure... But.. can anyone help with this? I have a container div - and two nested divs: one for text, and another with button (will become part of a resultset) I'd like the button div to show with the slideUp and slideDown

[jQuery] Re: Manipulating content generated after $(document).ready

2008-04-30 Thread Matt Henry
Morgan Karl: Thanks very much for your help. On Apr 29, 7:46 pm, Karl Swedberg [EMAIL PROTECTED] wrote: The .clone() method can take an argument -- true -- that will copy the events as well. So, you can do $(this).clone(true) instead of $(this).clone(). There are other ways to achieve

[jQuery] slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Waters
Sorry about that ignore my previous post - - a quick search of the archive revealed the answer.. .hover is the way to do this. $(document).ready(function(){ $(#div1).hover(function () { $(#div3).slideDown(500); }, function() { $(#div3).slideUp(300); }); });

[jQuery] Re: slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Theodore Ni
I would recommend changing the script type from text/jscript to text/javascript, since the former does not, at the very least, work on Firefox 3b5. On Wed, Apr 30, 2008 at 3:59 PM, Waters [EMAIL PROTECTED] wrote: Sorry about that ignore my previous post - - a quick search of the archive

[jQuery] Re: Cluetip showing content below fold

2008-04-30 Thread Karl Swedberg
it's possible that the problem has to do with the page being in quirks mode, though I can't tell for sure without more information. Could you try using a doctype system identifier to put the page into standards mode? For example: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0

[jQuery] Re: listen plugin along with cluetip plugin

2008-04-30 Thread Karl Swedberg
Hi Alexandre, I'm afraid that the cluetip plugin doesn't support event delegation. I just didn't have it in mind when I built it. Sorry. :( --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 30, 2008, at 11:30 AM, Alexandre Plennevaux wrote:

[jQuery] Re: help optimizing this code ?

2008-04-30 Thread bruno desthuilliers
On 30 avr, 16:42, Dave Methvin [EMAIL PROTECTED] wrote: FWIW, the page is a bit heavy on markup (document.getElementsByTagName('*') on my current test page yields 1295), but this is not something I can help. You're finding and attaching a lot of event handlers then. That would

[jQuery] Ajax and events

2008-04-30 Thread Peps
Hi, I have finished developping a website with jQuery. First of all, thanks to everybody who worked on this great Javascript library. It's truly an incredible timesaver. My question concerns binding and unbinding events when there are Ajax calls in which content is injected into the DOM. At

[jQuery] Re: tablesorter bug?

2008-04-30 Thread A13thGuest
This worked like a charm! Thank you! $('#myTable').trigger(update); // rebuilds the tablesorter data cache Carl Von Stetten wrote: After making changes to the table, use this instead: $('#myTable').trigger(update); // rebuilds the tablesorter data cache If you have added rows and need to

[jQuery] Re: Ajax and events

2008-04-30 Thread Carl Von Stetten
Peps, Look into the LiveQuery plugin. It monitors the DOM, and automatically binds events to new elements created from ajax requests. There are other methods to do this is well. Check out this jQuery FAQ:

[jQuery] count lis within a ul.

2008-04-30 Thread nihilism machine
right now i am using this: it seems to return the total width of the li's or something. why isnt there some kind of countFirstGenerationChldren prototype? :P code: var itemLength = $(div.belt ul li).length;

[jQuery] jQuery and JSON - newbie!

2008-04-30 Thread eid
Hi, I'll start off with throwing a warning out there: I'm a newbie :) Okay, so my problem is this: I have a div with id=”tooltip”, several divs with unique ids and lastly a js file with JSON content. (Part of) my JSON looks like this ({ class: Priest Of Mitra,

[jQuery] Re: Ext went GPL

2008-04-30 Thread christocracy
Just a heads up to everyone who has done some work with Ext. Since Ext 2.1 the new license is GPL3 (not LGPL). Since GPL is viral all code that bundles Ext will become GPL3 too. Something you might not want to happen. Fear not: http://extjs.com/products/ux-exception.php Chris Scott Ext on

[jQuery] Re: Plugin Requests

2008-04-30 Thread sameerT
Hi everyone, I'd like to request a plugin based on some very cool software found at http://brainmaps.org/index.php?p=brain-maps-api http://brainmaps.org/index.php?p=brain-maps-api . It's a high resolution image viewer with a UI like google maps. To prepare the tiled images one must use

[jQuery] brainmaps api jquery plugin

2008-04-30 Thread sameerT
Hi everyone, I'd like to request a plugin based on some very cool software found at http://brainmaps.org/index.php?p=brain-maps-api http://brainmaps.org/index.php?p=brain-maps-api . It's a high resolution image viewer with a UI like google maps. To prepare the tiled images one must use

[jQuery] Superfish problem question

2008-04-30 Thread Chris Griffin
I have a CSS menu I've been using that works fine on it's own. I added duplicates of li:hover to li.sfHover. The menus show up fine when I hover over them. However on mouseout them dropdown menu moves the the left edge of the page and then disappears. Now for the question. Is it possible to have

[jQuery] Re: Ajax and events

2008-04-30 Thread Peps
Thank you for your answer. I have actually looked into the FAQ. The Question i'm asking myself is: is it a valable option to proceed as I am doing (unbind everything on click, once ajax file is loaded rebind everything)? On all my test, I get no problem (only a slight lag in IE6 or FF1.5) but

[jQuery] Re: Ajax and events

2008-04-30 Thread Josh Nathanson
You can do that if you like, but I would second using the LiveQuery plugin. This is exactly what it was designed for, and it will reduce the amount of coding you have to do. Many people on this list including myself use it with excellent results. -- Josh - Original Message -

[jQuery] Re: count lis within a ul.

2008-04-30 Thread Dave Methvin
right now i am using this: it seems to return the total width of the li's or something. why isnt there some kind of countFirstGenerationChldren prototype? :P var itemLength = $(div.belt ul li).length; Looks like it should work; can you show your markup?

[jQuery] Re: jQuery Templates

2008-04-30 Thread boermans
Thanks Stan! jQuery template is helping make my code much easier to read. I have a question regarding it’s use. Have a look at this somewhat contrived code: var master = 'div${include}/div'; var parts = { says : 'Hello world!', include : 'p${variable}/p' }

[jQuery] JSON array size different in IE than in FF

2008-04-30 Thread jquertil
I'm at the end of my rope and REALLY hope someone knows how to address this: got some JSON like so: var Data= { Music : [ {Band:The Beatles,Title:Hey Jude}, {Band:The Beatles,Title:Help!}, ] } And I'm simply looping over it like so: $(Data.Music).each(function(i){

[jQuery] Re: :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Karl Swedberg
$('ul#list_container a:contains(' + hidden_div' + )') Hey Hamish, Looks like you switched a quote and a plus around. Should be: $('ul#list_container a:contains(' + hidden_div + ')') Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 30,

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread Karl Rudd
Probably should use $.each( object/array, function ) rather than $( domObjects ).each( function ). http://docs.jquery.com/Utilities/jQuery.each#objectcallback So: $.each( Data.Music, function(i) { // this == each object in the Data.Music array }); Karl Rudd On Thu, May 1, 2008 at 10:56 AM,

[jQuery] $.each() versus for() -- array size inconsistency between IE and FF

2008-04-30 Thread jquertil
I just posted something around problems with IE counting an object variable size differently than FF does. I dont know how to fix it without changing the $.each() statement with a for() loop. for(i=0; iJ.length-1; i++){

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread jquertil
I just posted something around problems with IE counting an object variable size differently than FF does. I dont know how to fix it without changing the $.each() statement with a for() loop. for(i=0; iJ.length-1; i++){

[jQuery] Re: jQuery and JSON - newbie!

2008-04-30 Thread jquertil
assuming your hover links also have a class name like tip, and your JSON is set like a proper variable named, say, allTolltips, it probably will look something like this: $('.tip').hover( function(){ if( allTooltips.items.id) == $(this).attr('id') ) {showToolTip();} }, function(){

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread jquertil
Karl, thanks -- that's nice but its got the same problem: the length of the object is 1 item larger in IE than it is supposed to be. I wonder why jquery adds an extra empty item into the object?!

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread Karl Rudd
You've got a stray comma (,) at the end of the last object in the array: {Band:The Beatles,Title:Help!}, -- Firefox ignores it, IE creates a blank object. Karl Rudd On Thu, May 1, 2008 at 11:35 AM, jquertil [EMAIL PROTECTED] wrote: Karl, thanks -- that's nice but its got the same

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread jquertil
OMG !! Karl, U R the Gr8est! I should have gone home... but how can you leave work with a silly bug in your script, right? The stray comma was of course the culprit. A, I can go home now.. Dude, if you are in S.F. Bay Area send me a message I will totally buy you a beer!

[jQuery] Re: :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Wes Duff
Yea saw that thanks guys. I found the answer right after I sent this out. Should have looked first. Thanks for the response though. On Apr 30, 8:21 pm, Karl Swedberg [EMAIL PROTECTED] wrote: $('ul#list_container a:contains(' + hidden_div' + )') Hey Hamish, Looks like you switched a quote

[jQuery] treeview - async - problems reinitializing tree

2008-04-30 Thread rolf m
Our developer ran into a problem when trying to set up a refresh button on an async treeview implementation. Our tree contents will be changing all the time. Basically, we need to know how to blow away the contents of the UL and then re-insert them. For the refresh button click, currently we're

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread Karl Rudd
*chuckle* Quite alright. I think most programmers have suffered from TCB (Temporary Comma Blindness), or TSB (Temporary Semi-colon Blindness) at one time or another. The best cure is usually sleep or another set of eyes. :) Karl Rudd On Thu, May 1, 2008 at 11:46 AM, jquertil [EMAIL PROTECTED]

[jQuery] Re: :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Hamish Campbell
What? jQuery can't handle gross js syntax errors? Piffle rot! :-p On May 1, 1:21 pm, Karl Swedberg [EMAIL PROTECTED] wrote: $('ul#list_container a:contains(' + hidden_div' + )') Hey Hamish, Looks like you switched a quote and a plus around. Should be: $('ul#list_container a:contains('

[jQuery] Re: JSON array size different in IE than in FF

2008-04-30 Thread jquertil
dont forget TBB, temporary bracket-blindness :)

[jQuery] [NEWS] jQuery ColdFusion preso at CFUnited

2008-04-30 Thread Rey Bango
John Farrar will do a jQuery ColdFusion preso at CFUnited: http://cfunited.com/blog/index.cfm/2008/4/30/CFUnited-Interview--jQueryCF-Integration--John-Farrar Rey

[jQuery] Re: $.each() versus for() -- array size inconsistency between IE and FF

2008-04-30 Thread Dave Methvin
But this code below makes IE think J.length is larger by 1, compared to FF. Because of that, IE throws a fatal error in its last loop, since J is no longer defined. Most likely, there is a trailing comma in the array definition, like this: var x = [1,2,3,] IE treats that as a 4-element

[jQuery] Re: $.each() versus for() -- array size inconsistency between IE and FF

2008-04-30 Thread Karl Rudd
That was the problem Dave. He asked it in another thread and it was sorted out. Karl Rudd On Thu, May 1, 2008 at 12:22 PM, Dave Methvin [EMAIL PROTECTED] wrote: But this code below makes IE think J.length is larger by 1, compared to FF. Because of that, IE throws a fatal error in its

[jQuery] Autocomplete: display errors

2008-04-30 Thread dineshv
My autocomplete is getting data from a server (using a localhost). I've checked and the data is getting to the browser. But, the items do not display and I'm continually getting the following set of errors: localhost - - [30/Apr/2008 19:29:04] GET / HTTP/1.1 200 - localhost - - [30/Apr/2008

[jQuery] Re: count lis within a ul.

2008-04-30 Thread Wes Duff
I dont know if this is right or not but every time you use a function you should end it with () and (param1, param2, paremEnd) if you have parameters. So shouldnt it be $(div.belt ul li).length(); On Apr 30, 7:04 pm, Dave Methvin [EMAIL PROTECTED] wrote: right now i am using this: it

[jQuery] Re: slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Waters
Thanks Ted - done. On May 1, 3:40 am, Theodore Ni [EMAIL PROTECTED] wrote: I would recommend changing the script type from text/jscript to text/javascript, since the former does not, at the very least, work on Firefox 3b5. On Wed, Apr 30, 2008 at 3:59 PM, Waters [EMAIL PROTECTED] wrote:

[jQuery] Re: New Twitter Account for jQuery jQuery UI Projects

2008-04-30 Thread Joseph
Rey, Great news indeed! Twitter has fully replaced 99% of my RSS feeds, so this is truly a good idea ; ) I am following you guys! Cheers, Joseph Hurtado Web Developer Toronto, Canada On Apr 27, 3:05 pm, Rey Bango [EMAIL PROTECTED] wrote: In an effort to maximize the reach of announcements

  1   2   >