[jQuery] Re: 3D carousel?

2007-07-08 Thread sozzi
Hmm, check out this demo http://www.willjessup.com/sandbox/jquery/rotator/rotator.html not exactly what you are looking for but close enough to start working? On Jul 7, 10:26 pm, "Fred Janon" <[EMAIL PROTECTED]> wrote: > Has anyone done or know how to do a carousel like the 3D circular carousel

[jQuery] Re: how can i get only the id's of a container's child elements

2007-07-08 Thread Glen Lipka
var myString = ""; $("#container .item").each(function(i){ myString = myString + "," + this.id; }); $("#myInput").val(myString); Hope this helps. Glen On 7/8/07, rockerzocker <[EMAIL PROTECTED]> wrote: First of all many thanks to the makers for this absolutly fantastic library. I just di

[jQuery] Re: Introducing Hot Chili

2007-07-08 Thread Sean Catchpole
A very interested greasemonkey script, thank you. Some downsides are picking the right color theme for the right background color. And also, if this was a full firefox extension then you could integrate it into the right click menu nicely. Cheers ~Sean On 7/8/07, Andrea Ercolino <[EMAIL PROTEC

[jQuery] Re: Select div containing link

2007-07-08 Thread Karl Swedberg
Here is one way you could do it: $(document).ready(function() { $('a.remove').click(function() { $(this).parents('div.box').fadeOut(); return false; }); }); Hope that helps. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 8, 2007, at 4:0

[jQuery] Re: Apply effect to entire div holding a link

2007-07-08 Thread Larry Garfield
You can attach a click event handler to the link, then crawl up the DOM to the nearest div and .hide() that. I think something like this (untested!): $('a).bind('click', function () { $(this).parents('div')[0].hide(); }); On Sunday 08 July 2007, gabeg wrote: > Apply effect to entire div hold

[jQuery] addClass() not executing until cursor enters confirm() box.

2007-07-08 Thread barophobia
Hello, I have the following code: http://www.pastebin.ca/609684 When someone clicks the appropriate element I want the row of that element to change its background. But what happens is that when they click the link the confirm box is created but the row for that element doesn't change until the

[jQuery] Apply effect to entire div holding a link

2007-07-08 Thread gabeg
Apply effect to entire div holding a link I have a div with class box-itemid (itemid is some numbers). Inside that div I have a link that when clicked, I want to hide the div the contains it. Is this possible in jQuery? Thanks in advance for any tips/help.

[jQuery] Re: How to define var to ajax in onClick?

2007-07-08 Thread sharq
Yes, that was simple, but i wasnt trying hard enugh ;P I wanted to achieve: onClick="javascript:str(stro = './page.html');" Very fast, simple and useful ;] On 7 Lip, 21:33, George <[EMAIL PROTECTED]> wrote: > Can you describe this scenario a little more? It may not be quite > clear what you're tr

[jQuery] Select div containing link

2007-07-08 Thread [EMAIL PROTECTED]
I have a div with class "box" that contains a link with class "remove". When the link is clicked I want to .fadeOut the entire div that is holding the link. Is this possible? I've been trying different thing but nothing seems to work. Thanks in advance

[jQuery] Re: Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread zarino
Ahhh brilliant! Firstly thanks to Benjamin for a speedy response. I never knew about the dimensions plug in. Very useful! I wrote my own little bit of code, but admittedly it doesn't take into account the IE6 problem. Your version, Klaus, is excellent. Thank you everyone! I knew it would be som

[jQuery] Re: How to define var to ajax in onClick?

2007-07-08 Thread sharq
Yes, that was very clear, but i wasnt trying enough.. I wanted achieve: onClick="javascript:str(stro = './page.html');" Very quick, simple and useful ;] Cheers On 7 Lip, 21:33, George <[EMAIL PROTECTED]> wrote: > Can you describe this scenario a little more? It may not be quite > clear what you'r

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
Well, I was thinking of a server side solution, but just thought that there was a way to do it on the client side and wanted to understand that. Just to be clear, are you saying that's not an option and it must be server side? Also, if you have a chance to address my "JQuery - CrossBrowser? - Sc

[jQuery] slideUp+Ajax+slideDown problem...

2007-07-08 Thread sharq
Hi, Id like to have nice smooth slidings but... div slides up and disappears smoothly, ajax loads page, and there`s the slideDown...It slides to the same height that was before, and then div fits to new content.. Its ugly, mostly when theres big differences between height of div before and after..

[jQuery] event handler variable scope in classes

2007-07-08 Thread steve
I'm a bit of a jQuery newbie, trying to convert some existing class files to a jQuery structure. I have a class like this: function testClass(){ this.foo = 100; this.init(); } testClass.prototype = { init: function(){ var instance = this; $('a', instance).click(function(){ in

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
Thanks, but before I go into my reply, I wanted to say that I'd posted hours earlier and it did not show up. I got the "your post was successful" message, but it's simply not here. Have you had this happen? I will try your suggestion. I'm not sure exactly where to put it, but I'll experiment.

[jQuery] how can i get only the id's of a container's child elements

2007-07-08 Thread rockerzocker
First of all many thanks to the makers for this absolutly fantastic library. I just discovere jquery and I'm really carried away by its ease of use and its small size. However, as I slowly get a grip on how it works, i still couldn't figure out, whether there is a function in jquery which returns

[jQuery] paid thickbox modifications

2007-07-08 Thread sachbearbeiter
hello my request: would it be possible to make an extended/modified version of thickbox for us and the community of thickbox-users? the problem: a) we need a next and previous button in the iframe-part of thickbox - like the image-gallery-part of it (we want to show following websites in the

[jQuery] Introducing Hot Chili

2007-07-08 Thread Andrea Ercolino
Hot Chili is my new little creature. It's like a graffiti spray can: grab it and spice up someone else's gray codes. A short post about it: http://noteslog.com/post/introducing-hot-chili/ -- View this message in context: http://www.nabble.com/Introducing-Hot-Chili-tf4045543s15494.html#a114915

[jQuery] Re: Navigation conversion

2007-07-08 Thread Terry B
I dont have an absolute solution as I havent played with this quite yet but Interface plugin should help you here. Recommend using JQuery 1.1.2 for it though. Go here: http://interface.eyecon.ro/demos and look at "Fisheye menu" for example this probably could be done without Interface by apply

[jQuery] Re: JQuery - CrossBrowser? - Script not working in Firefox

2007-07-08 Thread troycawley
The local autocomplete works fine for me (Firefox/2.0.0.4). With the ajax autocomplete...your file @ http://www.pengoworks.com/workshop/jquery/autocomplete_ajax.cfm gives an error in both FF and IE. On Jul 7, 11:04 pm, AtlantaGeek <[EMAIL PROTECTED]> wrote: > With JQuery supposedly crossbrowser

[jQuery] Re: how to animate two divs' position smoothly at the same time

2007-07-08 Thread eddy
Hi, I saw your demo,Thank you! But there's too much recursion error.How to resolve it? On 7月5日, 下午12时36分, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > I tried to make a demo.http://www.commadot.com/jquery/animate/ > > How come I get an infinite too much recursion error loop? > > Glen > > On 7/4/0

[jQuery] blur( fn ) doesn't work in Opera?

2007-07-08 Thread MrNase
I am using this code: $(document).ready(function() { $('#inputthreadtitle').blur(function() { var value = this.value; $('td#similarthreadcheckcontent').html(''); $.get("ajax.php", { do: 'ge

[jQuery] Re: blur() problem

2007-07-08 Thread MrNase
It's not a jQuery problem. Try using a { outline: 0; } in your CSS file. :)

[jQuery] Re: jquery 1.1.3 and "undefined" variables

2007-07-08 Thread Kim Johnson
Hi John, There isn't so much a page to show, as I've fixed the error (and the "fix" was in my php code, not jquery) and/or you have to be logged in to use the features, but here's the culprit code that suddenly changed how it was working. I'm still in novice mode with jquery so there might be a m

[jQuery] Re: Release: Tooltip plugin 1.1

2007-07-08 Thread Jörn Zaefferer
R. Rajesh Jeba Anbiah wrote: Another thing, you're bundling your site's style in zip file. Are you referring to the demo files? If so, that is intentional. If not, could you clarify that? -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: jquery 1.1.3 and "undefined" variables

2007-07-08 Thread John Resig
Kim - We haven't seen any errors like this, do you have a page up where we can see it in action? --John On 7/8/07, Kim Johnson <[EMAIL PROTECTED]> wrote: Hi folks, I had 100% working jquery code throughout my site, but upon updating to the newest version, a TON of stuff is no longer working

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread Benjamin Sterling
Phil, My apologies, I had read that it was not under development anymore. John, Can't find the message that I first read that in, but was also noted in the following threads and no one corrected this error. http://groups.google.com/group/jquery-en/browse_thread/thread/da5b5e23434e93eb/3921602018

[jQuery] jquery 1.1.3 and "undefined" variables

2007-07-08 Thread Kim Johnson
Hi folks, I had 100% working jquery code throughout my site, but upon updating to the newest version, a TON of stuff is no longer working. Specifically, "undefined" is showing up in various variables being passed around or gotten via selectors. One thing I've found is that while in the past a bla

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread John Resig
What? Of course it's supported. Interface is still an official plugin - if something was broken in this release, we'll need to resolve it. Phil - do you have a demo where this is occurring? --John On 7/7/07, Terry B <[EMAIL PROTECTED]> wrote: interface isnt supported under 1.1.3 On Jul 7, 1

[jQuery] Re: JQuery - CrossBrowser? - Script not working in Firefox

2007-07-08 Thread Matt Stith
Its working fine for me in firefox. Try using firebug or just the javascript console to see if any errors are being reported. What version of firefox are you using? On 7/7/07, AtlantaGeek <[EMAIL PROTECTED]> wrote: With JQuery supposedly crossbrowser capable, I did not think the script I'm usi

[jQuery] Re: Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread Klaus Hartl
zarino wrote: Hi! I'd like to set all elements with the class ".inner" to have a minimum height equal to the height of the browser's viewport. So, if the window height is 550px, each of the '.inner' divs will have a minimum height of 550px. I suspect it's bound to be super-easy to do with jQuer

[jQuery] Re: Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread Klaus Hartl
Karl Swedberg wrote: Another plugin that might be helpful is Dave Cardwell's jqMinMax, which adds support for min- and max-height (and width) to browsers that don't support them in their CSS implementations (notably, IE6). http://davecardwell.co.uk/javascript/jquery/plugins/jquery-minmax/

[jQuery] Re: Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread Karl Swedberg
Another plugin that might be helpful is Dave Cardwell's jqMinMax, which adds support for min- and max-height (and width) to browsers that don't support them in their CSS implementations (notably, IE6). http://davecardwell.co.uk/javascript/jquery/plugins/jquery-minmax/ --Karl __

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread Dan G. Switzer, II
>Thanks. Can I get that customer number from the hidden field, >though? I'll try $('#CustNo').val() but if that doesn't work, I'd be >at a loss . . . > You can set the extra parameters to be sent programmatically using after the initialization by using: var ac = $("#txtItem"); ac[0].autocomple

[jQuery] Re: Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread Benjamin Sterling
Check out the dimension plugin. On 7/8/07, zarino <[EMAIL PROTECTED]> wrote: Hi! I'd like to set all elements with the class ".inner" to have a minimum height equal to the height of the browser's viewport. So, if the window height is 550px, each of the '.inner' divs will have a minimum height

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread Benjamin Sterling
That is correct, could not think of the correct name off the top of my head. On 7/8/07, Terry B <[EMAIL PROTECTED]> wrote: You mean UI library or is that the same? On Jul 7, 10:51 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > FYI, there will be a new FX library coming on line sometime

[jQuery] Re: Drag- & Droppables using Interface

2007-07-08 Thread Benjamin Sterling
A live version of the script can be found on http:// www.ethowin.net/dragTest.htm . I tried using your code, but it neither cloned or removed the dragged element. Hmm... then it probably was not getting an element in cor

[jQuery] Re: Non integer amount of visible items

2007-07-08 Thread yhager
Jan Sorgalla wrote: > > > yhager wrote: >> >> Hi, >> >> I am trying to achieve a view of 3.5 DIVs in jcarousel. The reason is >> that in terms of usability, it gives the user the understanding there is >> more info and he needs to scroll if he wants to view it. >> >> While I haven't dived

[jQuery] Set element's css 'min-height' to browser's viewport height?

2007-07-08 Thread zarino
Hi! I'd like to set all elements with the class ".inner" to have a minimum height equal to the height of the browser's viewport. So, if the window height is 550px, each of the '.inner' divs will have a minimum height of 550px. I suspect it's bound to be super-easy to do with jQuery, but newbie th

[jQuery] Navigation conversion

2007-07-08 Thread Allan Mullan
Hi all, I'm trying to convert a simple navigation to jQuery (from Mootools) but I'm not having the best of luck with it yet, the original is here: http://www.chromasynthetic.com/blog/wp-content/uploads/2006/09/mootools1.html So far I have this: http://www.skorpion.geek.nz/projects/nav2/index.

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread Dylan Verheul
You can insert it directly (serverside, so PHP, CF, whatever floats your boat) into the script. Use the extraParams option. On 7/8/07, AtlantaGeek <[EMAIL PROTECTED]> wrote: $('#CustNo').val() is not working. How can I get the CustNo value set dynamically to the value in a hidden field? On

[jQuery] blur() problem

2007-07-08 Thread debussy007
Hi, I have an arrow on my website on which the user can click. The problem is that when the user clicks, in Mozilla I have the selection border on the arrow. The arrow has id "buttonNext" I tried this : $("#buttonNext").click(function(){ alert("test");

[jQuery] Thickbox: Safari iFrame Cache

2007-07-08 Thread Thomas Jaggi
If I have several links to a thickbox-iFrame on my site, after reloading the site Safari always shows the same site in the iFrame (the one I last opened before reloading). The same problem appears if I have just one link but change it after having clicked once. After successfully reloading it ope

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread philguillard
Thanks a lot. Phil Benjamin Sterling wrote: Phil, As Terry said, Interface is not supporting 1.1.3+, if there are no "real" need to use 1.1.3+, then I would suggest sticking with 1.1.2, if you need a copy, let me know. FYI, there will be a new FX library coming on line sometime in the near fu

[jQuery] 3D carousel?

2007-07-08 Thread Fred Janon
Has anyone done or know how to do a carousel like the 3D circular carousel in Flash in Amazon? It looks pretty cool. Forgive me if the link doesn't work for you but the carousel shows the best-seller books in a 3D circular carousel. http://www.amazon.com/ref=topnav_gw_/105-7722567-3277224

[jQuery] Re: Drag- & Droppables using Interface

2007-07-08 Thread Hurreman
Thanks for the welcome Benjamin! A live version of the script can be found on http:// www.ethowin.net/dragTest.htm . I tried using your code, but it neither cloned or removed the dragged element. Also, the problem is qui

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
$('#CustNo').val() is not working. How can I get the CustNo value set dynamically to the value in a hidden field? On Jul 6, 10:46 pm, AtlantaGeek <[EMAIL PROTECTED]> wrote: > Thanks. Can I get that customer number from the hidden field, > though? I'll try $('#CustNo').val() but if that doesn't

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread Terry B
You mean UI library or is that the same? On Jul 7, 10:51 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > FYI, there will be a new FX library coming on line sometime in the near > future, just not sure when.

[jQuery] JQuery - CrossBrowser? - Script not working in Firefox

2007-07-08 Thread AtlantaGeek
With JQuery supposedly crossbrowser capable, I did not think the script I'm using would have any issues in Firefox. Dumb thought, perhaps. It doesn't seem to execute at all in Firefox. It's the AutoCompleter located at http://www.pengoworks.com/workshop/jquery/autocomplete.htm. It's working we