[jQuery] Overlib like funtionality with JQuery

2007-04-05 Thread [EMAIL PROTECTED]
Overlib is a JS library with lots of cool features for JS popups. http://www.bosrup.com/web/overlib/ I wonder if there is anything like this already built into JQuery or possibly in a plugin. Thanks.

[jQuery] code to wrap jquery in to wall it off from older browsers?

2007-04-05 Thread stylo~
Can anyone suggest good code to wrap jquery in to wall it off from older browsers altogether? I'd prefer some object detection but obviously createElement isn't going to cut it finely enough. I'm not up on what the latest browsers have that IE5.5/OP8 and others don't have. As I wrote on another

[jQuery] Re: low hanging newbie fruit for you to snack on

2007-04-05 Thread stylo~
There are problems with IE and headers on GETs, Klaus. The timestamp is flawless and easy. See here for example: http://www.enja.org/david/?p=25

[jQuery] Re: Overlib like funtionality with JQuery

2007-04-05 Thread weepy
yes theres jtip http://codylindley.com/Javascript/264/jtip-a-jquery-tool-tip On Apr 5, 7:08 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Overlib is a JS library with lots of cool features for JS popups. http://www.bosrup.com/web/overlib/ I wonder if there is anything like this already

[jQuery] Re: tabs - initial tab load

2007-04-05 Thread Ariel Jakobovits
I realize now that this was very specific to my project, and I got this to work. Since i am loading all the elements of my page with AJAX, I had to wait for the tabs to be fully loaded, then simply add the content for each fragment. It is a shame that there is no onClick or onShow fired for

[jQuery] Re: Truncate Plugin v.2.0

2007-04-05 Thread Scott Sauyet
Giant Jam Sandwich wrote: Well, I have vastly improved this script. It was my first plugin for jQuery, and after creating a few others, I decided to go back and make some edits on this one. You can find the demo here: http://reindel.com/blog/src/jquery_truncate/ Nice! An interesting variant

[jQuery] Best practice for image source change

2007-04-05 Thread Oddish
I've got a bunch of thumbnails, and when clicking these thumbnails, a larger image is supposed to change. I do this by changing the src attribute of the larger image, but I'm very new to jQuery so I was wondering about the best way to accomplish this. Right now, I've got this working code, but

[jQuery] Re: tabs - initial tab load

2007-04-05 Thread Klaus Hartl
Ariel Jakobovits schrieb: I realize now that this was very specific to my project, and I got this to work. Since i am loading all the elements of my page with AJAX, I had to wait for the tabs to be fully loaded, then simply add the content for each fragment. It is a shame that there is no

[jQuery] Re: Best practice for image source change

2007-04-05 Thread Will Kelly
I wrap each thumbnail with a link: a href=javascript:; id=tnLink01img src=thumbnail01.jpg alt= //a This is the amateurish jQuery code I've conjured up: $(a#tnLink01).click(function() { $(#mainImage).attr({src:another_large_image.jpg}); }); I'll need one of these functions for every

[jQuery] Re: tabs - initial tab load

2007-04-05 Thread Klaus Hartl
Klaus Hartl schrieb: Ariel Jakobovits schrieb: I realize now that this was very specific to my project, and I got this to work. Since i am loading all the elements of my page with AJAX, I had to wait for the tabs to be fully loaded, then simply add the content for each fragment. It is a

[jQuery] Re: tabs - initial tab load

2007-04-05 Thread Ariel Jakobovits
I do think the selectedIndex function should be added to the plugin. In regards to how i am using the tabs... What I am doing is essentially something like this: var tabsModule = new TabsModule(); // outputs 2 tabs in the page, with no content in either tab tabsModule.addTabContent(1,new

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-05 Thread Ronald Haring
Looks good, only one suggestion, this line: var id = curImg.parent().parent().parent().parent().parent().parent().attr('id'); // get the id of the parent TR tag looks very brittle. If you change the table or tr a bit, then you are lost. Why dont you try and add another class to the img e.g.

[jQuery] Interface Slider plugin problem

2007-04-05 Thread Aditya Mooley
Hello all, I am trying to use slider plugin from interface for price range. But, when I try to set the values for slider indicators using SliderSetValues function it sets the indicator to incorrect value. For e.g. if I set slider 1 to [15, 0] it changes its X by 17 and not 15. My working

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Richard Thomas
Thats the hard part about trying to sort an already built table, I prefer the other direction, build the tables off a set of data.. This way you can do the formatting afterward and not have any issues. http://projects.cyberlot.net/trac/jqpie/wiki/ExampleAuto On 4/5/07, Christian Bach [EMAIL

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-05 Thread David Duymelinck
How does that makes it possible to change the table? The solution for all those parents is var id = curImg.parents('tr').attr('id'); With parents you will get all the parent elements and you can limit it using an expression. http://docs.jquery.com/DOM/Traversing#parents.28_expr_.29 On 5

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-05 Thread David Duymelinck
Ok i was a bit too quick. You could use an idnumber for each image but it will add more code to the html page. On 5 apr, 14:23, David Duymelinck [EMAIL PROTECTED] wrote: How does that makes it possible to change the table? The solution for all those parents is var id =

[jQuery] Png fix for ie 6

2007-04-05 Thread Geoffrey Knutzen
Is there a jquery plugin for fixing .png images in IE 6? Thanks -Geoff

[jQuery] Re: Png fix for ie 6

2007-04-05 Thread Benjamin Sterling
not sure if there is a plug in, but the topic has been discuss quite a few times with some solutions. Do a search thru the group and you can find a bunch. On 4/5/07, Geoffrey Knutzen [EMAIL PROTECTED] wrote: Is there a jquery plugin for fixing .png images in IE 6? Thanks -Geoff --

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

2007-04-05 Thread Rey Bango
Probably so you know we'll have to do some CF conversion there! ;) Andy Matthews wrote: Holy WOW!!! I'm assuming that uses PHP for the back end? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gareth Hughes Sent: Thursday, April 05, 2007

[jQuery] Re: New Field Plug-in...

2007-04-05 Thread Mike Alsup
Good stuff, Dan. The first thing that jumps to mind is that these would be nice enhancements to the form plugin. getValue is very similar to fieldValue. I like the logic of your getValue better but I like the idea of returning the array instead of the string (and let the caller join it on

[jQuery] Re: Overlib like funtionality with JQuery

2007-04-05 Thread Brian Miller
Since you're asking... :) It would be nice if I could declare the tip body HTML with a string, rather than requiring a bodyHandler function. This way, for static tooltip content, I can be lazy and type a little bit less. :-D Thanks! - Brian [EMAIL PROTECTED] schrieb: Thanks for info. I

[jQuery] Re: Encoding forgin languages Jquery+Validation plugin - help!

2007-04-05 Thread Jan Sorgalla
amircx wrote: uh, maybe. but its still sends gibrish (try to see in firefox the headers that sends) and im using php, some of the answers here pepole sent ill be happy if can translate the code language to php Do you send correct headers in your PHP script before outputting the json

[jQuery] Re: toggling checkboxes in an adjacent table cell

2007-04-05 Thread Roman Weich
RwL schrieb: I'm pretty new to jQuery and have hit the wall on this one... I have a tabular form where data points can be selected for update or to be ignored, sample here: http://www.lifford.org/exp/jQuery-checkboxes.html It was extremely easy to set up the select all / deselect all toggle

[jQuery] Re: New Field Plug-in...

2007-04-05 Thread Mike Alsup
I've toyed around w/using an array instead (I actually build an array, but return a string.) I may toy around w/making it a setting--whether to return arrays or strings. I'd say either make it an option (along with what the join char is) or just impl two method, one would call the other and

[jQuery] Re: Overlib like funtionality with JQuery

2007-04-05 Thread Brian Miller
Brian Miller schrieb: Since you're asking... :) It would be nice if I could declare the tip body HTML with a string, rather than requiring a bodyHandler function. This way, for static tooltip content, I can be lazy and type a little bit less. Sounds good, can you explain that a bit more?

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
Thanks Christian! I just pasted that in and indeed, now there isn't a JS error and it sorts correctly by title. However, now something strange is happening and the other fields don't sort -- they all sort by title! The date specifically is what I just tried. Here are two sample pages:

[jQuery] Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Andy Matthews
Right now m JS looks like this: $.get(psychic.cfm, {method:idArr[0],key:idArr[1]}, function(data){ //do some stuff }); psychic.cfm contains the following code: cfset VARIABLES.ps = CreateObject(component,includes.salesman) cfparam name=URL.method default= cfparam name=URL.key default=

[jQuery] Re: Moving to Google Groups (Finally)

2007-04-05 Thread Nathan Young -X \(natyoung - Artizen at Cisco\)
Bullets and numbering!!! Front Page 97!!! For my serious vote: top post with the whole thread quoted. N The worst thing ever?? Come on. Have you tried Microsoft Bob? On 4/4/07, Chris W. Parker [EMAIL PROTECTED] wrote: On Wednesday, April 04, 2007 2:48 PM Glen Lipka

[jQuery] Re: Body Browser Classes

2007-04-05 Thread Nathan Young -X \(natyoung - Artizen at Cisco\)
Hi. I love this idea, it's inventive and the need is there. The only feedback I have is that CSS that depends on JS will absolutely not fly where I work and play. Nathan Feedback desired: Lately, I have been developing CSS and HTML for a deep Web 2.0 complex app. Usually, I avoid

[jQuery] Re: EXTjs.com

2007-04-05 Thread Roger Ineichen
Subject: [jQuery] EXTjs.com http://extjs.com Just launched. fyi. Wow, very interesting work. Hmm, it's not valid CSS, HTML and does not fit if you need to support WAI or 508 standards. Does anybody know if Ext will support accessibility in the future? JQuery and Ext could be a dream

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

2007-04-05 Thread Stefan Petre
Yes, the back end is PHP driven but the response is XML Andy Matthews wrote: Holy WOW!!! I'm assuming that uses PHP for the back end? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gareth Hughes Sent: Thursday, April 05, 2007 9:03 AM To:

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

2007-04-05 Thread Stefan Petre
I don't think I will release this since Ext does a better job Andy Matthews wrote: I'm more interested to see if he's going to be able to release that as a plugin! Just to clarify, I think that looks amazing! andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Josh Nathanson
Andy, Ben Nadel has some information about calling CFCs outside the webroot, without a mapping, on his blog. It may be of help to you. I think there is still some mediation that happens but I don't think you have to use a middle-man file. -- Josh - Original Message - From: Andy

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

2007-04-05 Thread Stefan Petre
I don't quite understand; where do you want to add the description? Rey Bango wrote: Thanks Stefan. Can you give me a description of the site so I can add that? Rey [EMAIL PROTECTED] wrote: I can not show actual links because the products are white labeled. I made a little screencast

[jQuery] Re: THICKBOX doesnt work when on line...why?

2007-04-05 Thread spinnach
could you provide a link to the page ? dennis. helpshelps wrote: i have a problem implementing jquery and thickbox in my site, and i can't understand the reason, because, the off-line site is perfectly working with all the libraries and visualize the thickbox, but when i upload it on my

[jQuery] Re: THICKBOX doesnt work when on line...why?

2007-04-05 Thread Chris W. Parker
On Thursday, April 05, 2007 11:04 AM helpshelps said: i have a problem implementing jquery and thickbox in my site, and i can't understand the reason, because, the off-line site is perfectly working with all the libraries and visualize the thickbox, but when i upload it on my linux serve,

[jQuery] Re: Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Andy Matthews
Okay...I'll post this question to the cf-talk list as well. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Thursday, April 05, 2007 1:39 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Coldfusion: using $.get() to directly call a

[jQuery] Re: Encoding forgin languages Jquery+Validation plugin - help!

2007-04-05 Thread amircx
the problem is not with mb_substr or whatever cause the problem also happens once i change somthing (onkeypress) malsup wrote: jQuery.param encodes to UTF-8 using encodeURIComponent. i think the problem is in malsup script return jQuery.param(this.formToArray(semantic)); its

[jQuery] Re: toggling checkboxes in an adjacent table cell

2007-04-05 Thread Glen Lipka
On 4/5/07, RwL [EMAIL PROTECTED] wrote: How about this? $('input.rowChecker').click(function(){ $(this).parent().siblings('.updateItems').find('[EMAIL PROTECTED]').attr('checked', this.checked); }); Another possibility: $(table tr td:last-child input).click(function(){

[jQuery] Re: Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Josh Nathanson
As an aside, Rob Gonda's AjaxCFC handles numbers 2 and 3 below nicely, and he's built a hook into jquery into the latest version. You can set the return type to JSON or WDDX, and it will report a nice error message for you if there's an error in your cfc. Not sure how that would tie in with

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

2007-04-05 Thread Benjamin Sterling
Stefan, That is a great app. Wish I had vision like that! Great work!!! -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Body Browser Classes

2007-04-05 Thread Klaus Hartl
Glen Lipka schrieb: I hear everyone's points. I think the easy to remove it in 2012 argument doesn't resonate for me, since anything created today will be changed within 1-3 years (in my experience) and IE6 isn't going away that soon. The screen-reader/mobile stuff seems like they would

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

2007-04-05 Thread Kristinn Sigmundsson
Just noticed that http://www.penumbra-overture.com/ uses jQuery and thickbox. On 4/5/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Stefan, That is a great app. Wish I had vision like that! Great work!!! -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Body Browser Classes

2007-04-05 Thread Glen Lipka
Good Articles. I found it interesting to think about that hacks should be ugly. I think your point about browser specific sheets is well taken. Firebug makes this a good thing when you see what styles are applied and can see which file they are in. I wish IE had similar. Another article I

[jQuery] jQpie php to ruby/python conversion wanted.

2007-04-05 Thread Richard Thomas
Looking for someone to do and help maintain equivalent ruby and python versions of jQpie. I am going to take each submitted conversion and post it on the jQpie website for review, the code that is chosen will get $50 US right away for helping out and might be bribed in the future ;) I will

[jQuery] problems with the starterkit

2007-04-05 Thread [EMAIL PROTECTED]
Hi, I was playing with the starterkit: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery I got stuck in the following section, couldn't make it work: $(document).ready(function() { // use this to reset a single form $(#reset).click(function() { $(#form).reset(); });

[jQuery] Re: EXTjs.com

2007-04-05 Thread Glen Lipka
On 4/5/07, Ariel Jakobovits [EMAIL PROTECTED] wrote: Just curious, before I jump into developing a new project using Ext, from some of the real gurus on this list, what are the pros and cons of using this new lib? I'm not a guru, but I have some experience with it. The company I am working

[jQuery] Re: problems with the starterkit

2007-04-05 Thread Mike Alsup
That looks like an error in the tutorial. It should be: $(#form)[0].reset(); I got stuck in the following section, couldn't make it work: $(document).ready(function() { // use this to reset a single form $(#reset).click(function() { $(#form).reset(); }); }); I modified the

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

2007-04-05 Thread Nate Wienert
http://www.gamegum.com and http://www.toongum.com both use jQuery extensively for AJAX, effects, and DOM manipulation. On Apr 5, 4:04 pm, Karl Rudd [EMAIL PROTECTED] wrote: Please release it. While Ext is wonderful, it is relatively large, and the LGPL license can be a little annoying to some.

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
Super close, but not quite! :) http://anime-planet.com/users/reviewindex.php?usersid=1 $(#userreviewtable).tableSorter({ sortColumn: 'title', stripingRowClass: ['alt2','alt'], stripeRowsOnStartUp: true, textExtractionCustom: [ [2,'integer']

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
Err... I take that back. -the only way for the page to not have javascript errors is to put in the ExtractionType line, due to the special characters in the title. -however, by doing this, any time you sort any other field, it still is sorting by title, not the field you actually clicked. ---

[jQuery] UNfocus() ?

2007-04-05 Thread Kenneth
I am trying to emulate the :focus selector for IE, and I have succeeded in the initial aspect of that with the following: $inputs.each(function(){ $(this).focus(function(){ $(this).addClass('focus'); }); }); However, once the focus leaves the field,

[jQuery] Re: xpath question

2007-04-05 Thread Benjamin Sterling
Blair, Thanks for the heads up, much appreciated. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: problems with the starterkit

2007-04-05 Thread John Resig
$(#form).reset() should work if it is a correct form. (We attempt to trigger the default event wherever possible.) O wow, I just opened up the starterfile zip - it uses a version of jQuery that's pre-dates jQuery 1.0! Yikes. No wonder the code was acting strange for you. JJ - Try using

[jQuery] Re: Interface Slider plugin problem

2007-04-05 Thread Aditya Mooley
Thanks for the reply. But that didn't solved the problem. After a lot of debugging in islider.js file we noticed that it's the indicator GIF image which is creating this problem. I had to add the width of indicator image in the width of slider image to make it work correctly. So, if I need the