Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Klaus Hartl
Olaf Bosch schrieb: > Hi all, here is FaviconLinkMarker Beta3: > > http://olaf-bosch.de/bugs/jquery/links3.html > > - No IMG-tag, all CSS > - config. Favicon left or right (before/after) > - editable TITLE-tag > - No CSS edit for using > - No CSS overwritten, all what you in CSS given is after

[jQuery] jQuery 1.1b

2007-01-11 Thread John Resig
Hi Everyone - We're nearly ready for the big 1.1 release, this Sunday - but to tie you over, here's another set of bug fixes to test upon. The jQuery dev team has been working long-and-hard to fix all the support requests that've been coming in this week, and we've been pretty successful in fixing

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread Allan Mullan
Awesome stuff guys, the couple of issues I had are no longer. :-) Look forward to having more hands-on with jQuery this year, I've learnt so much about Javascript from jQuery and hoping I can help where needed. Allan John Resig wrote: > Hi Everyone - > > We're nearly ready for the big 1.1 rele

[jQuery] Safari Widget Pack

2007-01-11 Thread Yehuda Katz
I've begun work on a Safari widget pack, that allows you to work with Safari widgets in a way more jQuery way. For example: var y = $("#scrollArea").makeScrollAreaWithBars({singlepressScrollPixels: 50}, {id: "scrollBar"}, {id: "horizBar"}) .bind("mouseover", function() { y.focus(); }

[jQuery] strange slide Down Problem

2007-01-11 Thread Alexander Petri
Hi, i built a very small Demosite using CodeIgniter and jQuery. http://www.konzept-b.net/ci_2/index.php As you can see there is a strange effect if you click on "Kommentar"... on IE first it slides up, and then down. on FF it jumps up and down. could anyone help me to let that work smooth? // J

Re: [jQuery] strange slide Down Problem

2007-01-11 Thread Klaus Hartl
Alexander Petri schrieb: > Hi, > i built a very small Demosite using CodeIgniter and jQuery. > > http://www.konzept-b.net/ci_2/index.php > > As you can see there is a strange effect if you click on "Kommentar"... > on IE first it slides up, and then down. > on FF it jumps up and down. > could any

Re: [jQuery] List of jQuery-Powered Sites

2007-01-11 Thread Philippe Jadin
If you could, please provide a description of where jQuery is being used within the website. Please reply to this email and I'll begin compiling the list. Hello, We are starting to use Jquery inside Thinkedit, a freshly opensourced cms. We use it for the dropdown menus in the admin interface

Re: [jQuery] strange slide Down Problem

2007-01-11 Thread Klaus Hartl
Klaus Hartl schrieb: > Alexander Petri schrieb: >> Hi, >> i built a very small Demosite using CodeIgniter and jQuery. >> >> http://www.konzept-b.net/ci_2/index.php >> >> As you can see there is a strange effect if you click on "Kommentar"... >> on IE first it slides up, and then down. >> on FF it j

Re: [jQuery] dynamic loading of jquery.js into my web page

2007-01-11 Thread Christof Donat
Hi, > >> Yes, I downloaded it short before. > >> Please, tell me when I can download the fixed version, and I'll test > >> again > > > > I just have uploaded the current version again. Please try again. > > I've just downloaded and tried again but... nothing changed :( Have you tried the testsuit

Re: [jQuery] strange slide Down Problem

2007-01-11 Thread Alexander Petri
hm i updated the site but that doesnt help for the jumps Klaus Hartl schrieb: > Klaus Hartl schrieb: > >> Alexander Petri schrieb: >> >>> Hi, >>> i built a very small Demosite using CodeIgniter and jQuery. >>> >>> http://www.konzept-b.net/ci_2/index.php >>> >>> As you can see there is a st

Re: [jQuery] strange slide Down Problem

2007-01-11 Thread Klaus Hartl
Alexander Petri schrieb: > hm i updated the site > but that doesnt help for the jumps Ah, maybe I know what it is: collapsing margins. Try adding a border/padding on top of the slided element, so that vertical margins cannot collapse. Does that help? -- Klaus _

[jQuery] How to get element when it's ID contains bank space.

2007-01-11 Thread Ashish Agrawal
First, Thanks for such a great library. It damn good and fast - and most of all life saver for new bees like me. Recently I fall in trouble. I had an element in my HTML that may contains blank space in its ID. The thing is I am having one asp.net based portal system where IDs are given by user on

Re: [jQuery] How to get element when it's ID contains bank space.

2007-01-11 Thread Klaus Hartl
Ashish Agrawal schrieb: > First, Thanks for such a great library. It damn good and fast - and most > of all life saver for new bees like me. > > Recently I fall in trouble. I had an element in my HTML that may > contains blank space in its ID. The thing is I am having one asp.net >

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread Abel Tamayo
Second that: great stuff and very fast. I tested the new release in my project and it run smoothly once I changed some names to functions. Only problem is I didn't find a substitute to one of the functions but I'll explain that in another thread. Again: great stuff. Keep up the good work.

[jQuery] What's the new parent() in jQuery1.1?

2007-01-11 Thread Abel Tamayo
I just switched to jQuery-1.1b and it's great stuff, but now I get this error in Firebug: $(this).parent().id is not a function where it worked perfectly until now. I revised the list of changes but didn't find a substitute to parent() - the closest this I found was the change from ancestors() to

[jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread jazzle
That title may not make much sense, so here's the code: I want to be able to select _none or one_ of the checkboxes (note: not using radio-buttons). So I would like to know how to address the _other_ checkboxes (with the class noneorone) in the same . Do I need some XPath mixed wi

Re: [jQuery] What's the new parent() in jQuery1.1?

2007-01-11 Thread Klaus Hartl
Abel Tamayo schrieb: > I just switched to jQuery-1.1b and it's great stuff, but now I get this > error in Firebug: $(this).parent().id is not a function where it worked > perfectly until now. I revised the list of changes but didn't find a > substitute to parent() - the closest this I found was

Re: [jQuery] What's the new parent() in jQuery1.1?

2007-01-11 Thread Kolman Nándor
If I remember correctly there is no id() function any more. Use attr('id') instead. Nandi From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Abel Tamayo Sent: Thursday, January 11, 2007 2:14 PM To: jQuery Discussion. Subject: [jQuery] What's th

Re: [jQuery] What's the new parent() in jQuery1.1?

2007-01-11 Thread Abel Tamayo
d'oh! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread Dave Methvin
> I want to be able to select _none or one_ of > the checkboxes (note: not using radio-buttons). Why not radio buttons? They work that way automatically and continue to work if script is turned off. Just add a "None" radio to indicate none of the others. > So I would like to know how to address

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread Karl Swedberg
Something like this? $('input:checkbox').bind('click', function() { $(this).parents('tr').siblings().find('input.noneorone') }); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 11, 2007, at 8:14 AM, jazzle wrote: (sorry for edit) (I meant to a

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread Yehuda Katz
I was just doing this not a half hour ago: Assuming that "this" is the checkbox you clicked, jQuery(this).parent().siblings().find("input:checkbox").not(this) Worked great for me! I used the following code to achieve the effect I believe you're searching for (radio button-like functionality mad

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread jazzle
I hope you didn't assume that I hadn't considered that. Adding a 'none' would ruin the GUI design on a few different levels. NB: This is for an admin section I'm creating in a bespoke CMS, so no-script is not an issue. dave.methvin wrote: > > ... > Why not radio buttons? They work that way auto

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Olaf Bosch
Klaus Hartl schrieb: > The only fix I know for that bug is to give the link white-space: nowrap. Yes, and is include, works not in IE. This Bug is no new for me, i have never see a fixing. > is the background-positioning, thus to avoid redundant code: Ah looks cool, i love short code. Have you

[jQuery] mousewheel plugin updated

2007-01-11 Thread Brandon Aaron
I've made some big changes to the mousehweel plugin. All of these changes are based on quality feedback from users of the mousehweel plugin. First, I really simplified the API. The only methods are: - mousewheel() - unmousewheel() The mousewheel() method takes only one function and a second opti

Re: [jQuery] Safari Widget Pack

2007-01-11 Thread Brandon Aaron
This is going to be very nice Yehuda. Great work! -- Brandon Aaron On 1/11/07, Yehuda Katz <[EMAIL PROTECTED]> wrote: > I've begun work on a Safari widget pack, that allows you to work with Safari > widgets in a way more jQuery way. > > For example: > > var y = > $("#scrollArea").makeScroll

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread Karl Swedberg
On Jan 11, 2007, at 8:44 AM, Karl Swedberg wrote: Something like this? $('input:checkbox').bind('click', function() { $(this).parents('tr').siblings().find('input.noneorone') }); Ugh. I misread the request. Forget my answer. Use Yehuda's. :) On Jan 11, 2007, at 8:14 AM, jazzle wrote:

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread spinnach
..i have a couple of issues with both jquery 1.1b and the compatibility plugin.. this is the code from the compatibility plugin: jQuery.each(["id","title","name","href","src","rel"], function(i){ jQuery.fn[ i ] = function(h) { return h == undefined ?

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread David Duymelinck
Brandon Aaron schreef: > Test page: http://brandon.jquery.com/plugins/mousewheel/test/test.html > I tested the page on FF2 and i didn't see the log frame. In IE7 tests 6 and 7 fail their limitation. They both show movement up and down. Nice work. I didn't know it could get the speed of the mo

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Joan Piedra
Can't you just use z-index in $(this)?? onStop : function() { $(this).css("z-index","1"); } On 1/9/07, Su <[EMAIL PROTECTED]> wrote: I've got something I'm building wherein several boxes will be draggable. What I'd like to do is have a function that can be called when dragging stop

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread Andy Matthews
Nice Brandon... IE7 here. Everything seemed to work as promised except test 6 which says "should only do something when the mousewheel is moved down." yet I got a response in the monitor pane when I moved the mousewheel up. Just FYI. This works really well, you should be proud of yourself. I can

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Klaus Hartl
Olaf Bosch schrieb: > Klaus Hartl schrieb: > >> The only fix I know for that bug is to give the link white-space: nowrap. > > Yes, and is include, works not in IE. This Bug is no new for me, i have > never see a fixing. > >> is the background-positioning, thus to avoid redundant code: > > Ah l

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread David Duymelinck
David Duymelinck schreef: > Brandon Aaron schreef: > >> Test page: http://brandon.jquery.com/plugins/mousewheel/test/test.html >> >> > I tested the page on FF2 and i didn't see the log frame. > > In IE7 tests 6 and 7 fail their limitation. They both show movement up > and down. > > Nice

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Olaf Bosch
Olaf Bosch schrieb: > I would make 2 plugs, one with IMG one with CSS. So, and here is the latest version with IMG: http://olaf-bosch.de/bugs/jquery/links2.html - added a SPAN wrap to A and IMG with nowrap - Opera used Extra-CSS What about this? -- Viele Grüße, Olaf -

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread Brandon Aaron
Sorry, that was my fault. Copy and paste from previous test page. There aren't supposed to be limitations. I'll update the test page shortly. -- Brandon Aaron On 1/11/07, David Duymelinck <[EMAIL PROTECTED]> wrote: > Brandon Aaron schreef: > > Test page: http://brandon.jquery.com/plugins/mousewhe

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread David Duymelinck
> onStop : function() { > $(this).css("z-index","1"); > } > > > > On 1/9/07, *Su* <[EMAIL PROTECTED] > > wrote: > > I've got something I'm building wherein several boxes will be > draggable. What I'd like to do is have a function that can be >

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread Brandon Aaron
It is fixed. :) -- Brandon Aaron On 1/11/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > Sorry, that was my fault. Copy and paste from previous test page. > There aren't supposed to be limitations. I'll update the test page > shortly. > > -- > Brandon Aaron > > On 1/11/07, David Duymelinck <[EMAIL

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread David Duymelinck
Olaf Bosch schreef: > Olaf Bosch schrieb: > > >> I would make 2 plugs, one with IMG one with CSS. >> > > So, and here is the latest version with IMG: > http://olaf-bosch.de/bugs/jquery/links2.html > > - added a SPAN wrap to A and IMG with nowrap > - Opera used Extra-CSS > > What about this?

Re: [jQuery] Select _other_ elements (with a specific class) in same tr

2007-01-11 Thread Brian Miller
jazzle, You're going to have to code your way out of this one. Ultimately, you need to write an onClick or onChange event that looks at the other checkboxes to see if they are checked, and determine what to do from there. Here's a thought (off the top, untested): $('.noneorone:checkbox').bind('c

[jQuery] Stop an ajax call

2007-01-11 Thread Roberto Ortelli
Dear all, We've made an ajax upload form attaching multiple files. Now, we would like that the user can stop the attaching process of file by clicking on a link. How can we kill an ajax call with jQuery? -- Roberto Ortelli http://weblogger.ch ___ jQu

Re: [jQuery] Stop an ajax call

2007-01-11 Thread Felix Geisendörfer
Dear all, We've made an ajax upload form attaching multiple files. Now, we would like that the user can stop the attaching process of file by clicking on a link. Unless I've missed a new kind of hack, there is no way to upload a file via Ajax. So assuming you are working with a iframe you can tr

Re: [jQuery] Stop an ajax call

2007-01-11 Thread Roberto Ortelli
Hello Felix, 2007/1/11, Felix Geisendörfer <[EMAIL PROTECTED]>: > Unless I've missed a new kind of hack, there is no way to upload a file via > Ajax. So assuming you are working with a iframe you can try something like > this: Eheh right, we're using an iframe :P Thanks for your answer. _

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Su
No. The whole problem is that there's a static number in that statement. So eventually, all the panels end up with that same z-index, which makes them revert to stacking in source order. On 1/11/07, Joan Piedra <[EMAIL PROTECTED]> wrote: Can't you just use z-index in $(this)?? onStop : functio

Re: [jQuery] Stop an ajax call

2007-01-11 Thread Ámon Tamás
Roberto Ortelli wrote: > Hello Felix, > > 2007/1/11, Felix Geisendörfer <[EMAIL PROTECTED]>: > >> Unless I've missed a new kind of hack, there is no way to upload a file via >> Ajax. So assuming you are working with a iframe you can try something like >> this: > > Eheh right, we're using an ifr

Re: [jQuery] Stop an ajax call

2007-01-11 Thread Roberto Ortelli
Ámon, we made this solution using DWR and not jQuery... 2007/1/11, Ámon Tamás <[EMAIL PROTECTED]>: > Roberto Ortelli wrote: > > Hello Felix, > > > > 2007/1/11, Felix Geisendörfer <[EMAIL PROTECTED]>: > > > >> Unless I've missed a new kind of hack, there is no way to upload a file > >> via > >> A

[jQuery] Show submit button only...

2007-01-11 Thread Web Specialist
Hi all, anyone have an example using Form Validate plugin ( http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html) where submit button appears only after all form fields are correct(validated)? Thanx for your time. ___ jQuery maili

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Olaf Bosch
David Duymelinck schrieb: >> What about this? >> >> > With the #text a links your own links don't show the favicon in FF2 and IE7 :) it's a feature, no Favicon with *intern* links, this Script is for external Links The last 2 Links are to my domain, for testing, href="www.my.de" and href="../

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Olaf Bosch
Klaus Hartl schrieb: > Assigning the property with a dynamic name fails here... try: > > var dir = place == "after" ? 'right' : 'left' good, will later go on > You could handle that as an option: {img: true|false} maybe... Hahah, wonderfull, there I could also have got on myself ;)

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-01-11 Thread bmsterling
Here is one that is complete, I have about three more still in development and will post when they are out of beta. http://www.informationexperts.com Plug in used: Accordion (modified heavily) Thickbox (modified slightly) Flash (modified slightly) -- View this message in contex

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-11 Thread Joan Piedra
Hey Olaf, I believe your markup should use a rel attribute instead of the class attribute. Something like this, and make the call with the position as optional. http://jquery.com"; rel="external">jQuery $('[EMAIL PROTECTED]').favicon('External link: '); Pretty nice plugin you have, good job.

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread John Resig
Hi - I fixed the compat. plugin bug that you mentioned, in SVN rev 1010. Can you be more specific about the t.replace bug that you mentioned? I can't seem to locate it anywhere. --John On 1/11/07, spinnach <[EMAIL PROTECTED]> wrote: > ..i have a couple of issues with both jquery 1.1b and the co

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Joan Piedra
Hmm.. i read it again, and I understood you have different boxes and they all have different z-index, right? So if I undestand correctly when you stop moving one, they all come back to 1, losing the different positions they had. I think you could add their old z-index variables somewhere in marku

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread spinnach
hey, sorry about that, it was my fault, i tried to fix the compatibility plugin, but obviously changed it wrong so that's what caused the error.. with your fix to the compat. plugin everything works ok... John Resig wrote: > Hi - > > I fixed the compat. plugin bug that you mentioned, in SVN

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Jonathan Sharp
I think you're going to have to loop through all of your elements to find the max z-index and then either re-set them or just set the z-index to max+1. -js On 1/11/07, Su <[EMAIL PROTECTED]> wrote: No. The whole problem is that there's a static number in that statement. So eventually, all the

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Jonathan Sharp
Here's a starting point... This could be finished out into a plugin... http://jdsharp.us/code/zIndex/ -js On 1/11/07, Jonathan Sharp <[EMAIL PROTECTED]> wrote: I think you're going to have to loop through all of your elements to find the max z-index and then either re-set them or just set th

[jQuery] Difference between ajaxStop and ajaxComplete

2007-01-11 Thread Rich Manalang
anyone know the difference between these two? Rich ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread Abel Tamayo
Is it compatible with jQuery-1.1b? On 1/11/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: It is fixed. :) -- Brandon Aaron On 1/11/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > Sorry, that was my fault. Copy and paste from previous test page. > There aren't supposed to be limitations. I'll upd

[jQuery] is there a jQuery equivalent to the JavaScript .select() method?

2007-01-11 Thread Christopher Jordan
Hi folks, I'm trying to find out if there's a jQuery equivalent to this: form.ElementName.select(); I want to auto-select (read: highlight) the text in an input element. I've searched on Nabble to see if this has been covered, but I either don't know what to search for or it will just take too

Re: [jQuery] Difference between ajaxStop and ajaxComplete

2007-01-11 Thread Mike Alsup
> anyone know the difference between these two? ajaxStop is triggered when the number of outstanding ajax requests reaches zero. ajaxComplete is triggered after each response is received. ajaxComplete is also passed the XHR and the settings object. __

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread Brandon Aaron
Yes it is. -- Brandon Aaron On 1/11/07, Abel Tamayo <[EMAIL PROTECTED]> wrote: > Is it compatible with jQuery-1.1b? > > > On 1/11/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > > > It is fixed. :) > > > > -- > > Brandon Aaron > > > > On 1/11/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > > So

Re: [jQuery] is there a jQuery equivalent to the JavaScript .select() method?

2007-01-11 Thread Mike Alsup
> I'm trying to find out if there's a jQuery equivalent to this: > > form.ElementName.select(); Those DOM methods are still available to you: $('#myInput')[0].select(); ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] is there a jQuery equivalent to the JavaScript .select() method?

2007-01-11 Thread Jörn Zaefferer
Christopher Jordan schrieb: > Hi folks, > > I'm trying to find out if there's a jQuery equivalent to this: > > form.ElementName.select(); > > I want to auto-select (read: highlight) the text in an input element. > I've searched on Nabble to see if this has been covered, but I either > don't know

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Marc Jansen
Jonathan Sharp schrieb: > Here's a starting point... This could be finished out into a plugin... > > http://jdsharp.us/code/zIndex/ > > -js > Hey Jonathan, this is cool! I think you should display some advice on how to test the functionality. Nice work! -- Marc __

Re: [jQuery] fadeIn/fadeOut question

2007-01-11 Thread Tony Collins
I found the source of the problem. The interface elements plugin is the culprit: http://interface.eyecon.ro/about When its FX functionality is included, .fadeIn() won't restore an element that has had .fadeOut() applied under IE7. (ALEX: When I published the example, I removed that script tag and

Re: [jQuery] is there a jQuery equivalent to the JavaScript .select() method?

2007-01-11 Thread Christopher Jordan
Jörn: I had not seen that plug-in. I'll take a look. Thanks! Mike: Thanks! You guys rock! :o) Cheers, Chris Mike Alsup wrote: I'm trying to find out if there's a jQuery equivalent to this: form.ElementName.select(); Those DOM methods are still available to you: $('#myInput')[0

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Jonathan Sharp
Oh...yeah that would be a good idea...made sense to me! haha! I have included some instructions now. If I get some time I'll try and actually make a plugin of sorts out of it, or at least mock it up like the other code I have. I still have my updated menu to post...oh such is life... -js On 1

Re: [jQuery] fadeIn/fadeOut question

2007-01-11 Thread Alex Cook
Sorry but I have no experience with Interface... it broke when I first tried it many moons ago and I've never gone back... I should give it another poke... sorry I can't help you here Tony... anyone else? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ton

Re: [jQuery] Show submit button only...

2007-01-11 Thread Brice Burgess
Web Specialist wrote: > Hi all, > > anyone have an example using Form Validate plugin > (http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html > ) > where submit button appears only after all form fi

[jQuery] 1 Function, Multiple Events?

2007-01-11 Thread RhythmFighter
I have a feeling there is an obvious answer to this, but it escapes me... if have some thing like this that is called by document.ready(): function init_top_level() { $(".top_folder").click(function(i) { // Do a ton of stuff here }); } I not only want to assign t

Re: [jQuery] Simple(ish?) "bring to top" method

2007-01-11 Thread Su
Been on phone all day, but yes, this looks like pretty much exactly what I was talking about. You rule. I need to sit down and look at the source more closely later to see about attaching it to the Interface Draggables bit. On 1/11/07, Jonathan Sharp <[EMAIL PROTECTED]> wrote: Oh...yeah that wo

Re: [jQuery] 1 Function, Multiple Events?

2007-01-11 Thread Jörn Zaefferer
RhythmFighter schrieb: > I have a feeling there is an obvious answer to this, but it escapes me... > Right. Try this, it should be what you are looking for: function init_top_level() { var handler = function(i) { // Do a ton of stuff here }; $(".top_folde

Re: [jQuery] 1 Function, Multiple Events?

2007-01-11 Thread Michael Geary
> if have some thing like this that is called by document.ready(): > > function init_top_level() { > $(".top_folder").click(function(i) { > // Do a ton of stuff here > }); > } > > I not only want to assign the "click" event to my ".top_folder" > elements, but assign "dbl

Re: [jQuery] fadeIn/fadeOut question

2007-01-11 Thread Antonio Collins
Thanks for looking at this for me Alex. I've fixed the problem in interface elements. They overwrote jQuery's fx() to support their enhancements. Since interface elements hasn't been updated since Oct '06, their fx() had the same opacity issues that jQuery dealt with in recent releases. So, I

[jQuery] jQuery v1.1 Performance Results

2007-01-11 Thread Rey Bango
Hi everyone. Jack Slocum, the maker of the YUI-Ext lib, recently posted some performance benchmarks that compared his new extension, DOMQuery, to several libraries. jQuery was included in the comparison and in his tests, jQuery incorrectly appeared to fail or run slower than DomQuery. So we saw

Re: [jQuery] 1 Function, Multiple Events?

2007-01-11 Thread Nathaniel See
Thanks for the assistance. Yes, I was basically trying to assign a click and dblclick to the same function (to prevent users from double-clicking and firing the func twice). However, after looking into it a bit more, i think that the $("p").one("click", fun.is a better fit here. > I don't

[jQuery] Newbie - how to build a sliding/draggable panel

2007-01-11 Thread rolfsf
I'm not much of a javascripter, but I've been getting into JQuery lately... I'm wondering if there is there an existing JQuery solution for a sliding/draggable show/hide sidebar panel that scales to fit the various viewport heights? I posted a quick diagram of what I'm thinking of http://www.mon

Re: [jQuery] List of jQuery-Powered Sites

2007-01-11 Thread Michael Geary
Forgot to add us to the list... Zvents: http://www.zvents.com/ This is a Rails site and we completely replaced prototype.js with jQuery and our own code. We're using thickbox, a homegrown autocompleter, my DOM plugin, and lots of custom code. This also puts jQuery on our partner sites: The Bost

Re: [jQuery] Newbie - how to build a sliding/draggable panel

2007-01-11 Thread bmsterling
Rolf, try now to double post your messages. not sure if this is the best way of going about it, but this is what I did: