[jQuery] New Plugin: mousewheel
Seems to work fine for me in IE6/PC. But I'm not sure what the difference between one and two is. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Brandon Aaron Sent: Wednesday, September 27, 2006 11:04 PM To: jQuery Discussion. Subject: [jQuery] New Plugin: mousewheel
[jQuery] Request: Window plugin
Seems pretty nice. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Rey Bango Sent: Wednesday, September 27, 2006 10:21 AM To: jQuery Discussion. Subject: [jQuery] Request: Window plugin I found this Prototype window plugin and was wondering if there's something like this
[jQuery] SpinButton Plugin updated
The SpinButton / SpinBox Plugin has been updated with heaps of improvements by a splendid chap from this forum named Mark Lincoln. The SpinButton Plugin takes ordinary <input type='text'> boxes and turns them into SpinButton controls using just css and JS/JQuery. No extra markup is added so the textbox submits and otherwise conducts its life just like any other. Usage: $("#myInputElement").SpinButton(mySpinButtonOptions) Cheers all, George - Mark - Thanks for the code update. Great stuff. It pretty
[jQuery] Generating a unique id
Hi, Sometimes, I find it necessary to generate an id for an element, so I created the following little plugin. I'm posting it here in case it may be of use to anyone else, and as a possible candidate for jQuery core. $.generateId = function() { return arguments.callee.prefix + arguments.callee.count++; }; $.generateId.prefix = 'jq$'; $.generateId.count = 0; $.fn.generateId = function() { return this.each(function() { this.id = $.generateId(); }); }; Regards - Mark Gibson _______________________________________________
[jQuery] When / how did you find out about jQuery?
I've used it since at least January 2005 (at least that was the first time I emailed John about a bug when he was first working on it), but not as much as I do now. I first found out about his coding skills when following the addEvent coding contest (QuirksBlog - http://www.quirksmode.org/blog/archives/coding_techniques/contest/index.html) - which he won of course. Incidentally, jQuery doesn't use his winning code, but Dean Edwards' code (with a few modifications) and doesn't even use the W3c (or
[jQuery] $().load didn't works ini IE6
I need help to make the following code works in IE : document.writeln("<select name=\""+name+"\" id=\""+name+"\""+((multiple!=null)?" "+multiple:"")+">"); var tablename = "some_table"; $("#"+name).load("table_query.php", {table: tablename}); document.writeln("<\/select>"); Script table_query.php return <option> elements. This code work well in Firefox, but in IE, the select had no option. I tried to change table_query.php result to xml, and use following code : document.writeln("<select name=\""+name+"\"
[jQuery] mousewheel plugin
Hallo unfortunatelly, following code doesn't work: $('#test').bind("mousewheel", function() {...}); It seems, that mousewheel is not an accepted event in jquery. So I have written a small plugin that can handle wheel events. It is based on http://adomas.org/javascript-mouse-wheel/. It should only stop the standard handler (scrolling), if there is an event called "mousewheelup" or "mousewheeldown" in the event target. This works fine in firefox, but IE crashes ("target.events is empty or no object").
[jQuery] Form plugin's serialize(): performance issues
John, If you say jQuery doesn't support the OR selector '|', then I'm confused. I have a form with one SELECT element and several INPUTs. Check out the following results from Firebug: >>> $('INPUT', $('#myform')).length 6 >>> $('INPUT|SELECT', $('#myform')).length 7 That's what I expected as a result.. can you explain? m. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of John Resig Sent: Wednesday, September 27, 2006 11:06 AM To: jQuery Discussion.
[jQuery] Interface Slide bug
Using the 'SlideInDown' from 'Interface': http://interface.eyecon.ro/demos/ifxslide.html If I have a container absolute positioned, and instead of using 'top' and 'left' properties, I use 'right' and 'bottom', so the container attaches to the bottom right of the screen, the slide breaks. It still slides the container, however, it positions it in the top left corner of the screen. -- View this message in context: http://www.nabble.com/Interface-Slide-bug-tf2347586.html#a6536253 Sent from the JQuery
[jQuery] $.fn.updateIfModified problems
I want to be able to have a progress bar periodically updated after a button is clicked, then when the server-side task is complete - the progress bar is no longer updated (to avoid hammering the server). I have attempted to write a plug-in that extends the functionality of the AJAX library loadIfModified() function. This plug-in allows the contents of a <div> to be periodically updated after a defined interval. The plug-in should also allow the update to be cancelled, however I have not been able
[jQuery] New FX script out
Those are nice effects (PC/IE6). Very smooth too. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of abba bryant Sent: Wednesday, September 27, 2006 4:19 PM To: discuss@jquery.com Subject: [jQuery] New FX script out http://www.devpro.it/bytefx/ Not sure if anyone is interested
[jQuery] New plugin: Extra :selectors such as :focus, :modified, :input, :text
Simple http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ selectors plugin to add more specific query :selectors to JQuery. Adds things like: - $("FORM/*:modified") - To find form elements that have been changed or selected by the user. - $("FORM/*:focus") - To find the element that has the focus. - $("FORM/*:text") - To find texty elements (textarea & input type=text). And more. Full list and demo at http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ Note: There have been numerous
[jQuery] New Selectors plugin: Adds :focus, :modified, :input, :text etc
Simple http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ selectors plugin to add more specific query :selectors to JQuery. Adds things like: - $("FORM/*:modified") - To find form elements that have been changed or selected by the user. - $("FORM/*:focus") - To find the element that has the focus. - $("FORM/*:text") - To find texty elements (textarea & input type=text). And more. Full list and demo at http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ Note: There have been numerous
[jQuery] New FX script out
http://www.devpro.it/bytefx/ Not sure if anyone is interested but some of the fx are quite nice and probably easily jqueryized ( I made up a new word. ) Abba Bryant -- View this message in context: http://www.nabble.com/New-FX-script-out-tf2347369.html#a6535505 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] interesting syntax
> > Yes, as others mentioned, ( function() { /*stuff*/ } )();
[jQuery] interesting syntax
Hello, I've been poking around a bit in the jQuery source code. It's been enlightening and has proven that I don't know as much about Javascript as I thought I did! Here's a pattern that occurs frequently that I'm really curious about: new function() { // do stuff } Is the purpose of this just to provide local scope to the variables used? Is there an equivalant syntax that may be more common? I intuitively wouldn't even think the code inside the function would get executed unless the whole thing
[jQuery] Form plugin's serialize(): performance issues
> From: Mike Alsup
[jQuery] Use $.extend to clone object
> From: Klaus Hartl
[jQuery] interesting syntax
> Here's a pattern that occurs frequently that I'm really
[jQuery] Request: Window plugin
I found this Prototype window plugin and was wondering if there's something like this available for JQuery users: http://prototype-window.xilinus.com/ Those window look very slick and I believe that YUI also has a window class similar to that. Rey,,, _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] When / how did you find out about jQuery?
For the php coders out there, there is another good framework called Qcodo. I know some of the Qcodo community (myself included) are quite enamored with jQuery. Right now, most of the integration has been the creation of custom controls that use jquery for front end effects. These are php object components that can basically be dropped in to your form, and they maintain state, validate themselves, etc. For example, there is a contributed control called QTabPanel, that is based on the jquery tab plugin,
[jQuery] toc plugin
Hi! This plug-in creates a TOC for a given element. Here is a demo <a href="http://dimitarspassov.googlepages.com/jqpagecontent">http://dimitarspassov.googlepages.com/jqpagecontent</a> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] When / how did you find out about jQuery?
Similar tale here. I was searching for a new library to work with and came up with the same bunch, Prototype/Scriptaculous, Dojo & Mochikit. Jquery popped up during that search. It wasn't until I looked through thickbox that I became a convert though. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Rey Bango Sent: Wednesday, September 27, 2006 8:02 AM To: jQuery Discussion. Subject: Re: [jQuery] When / how did you find out about jQuery?
[jQuery] JTip Mods by Karl Swedberg
Guys, Karl Swedberg has been working on a mod that he and talked about and I think he's done an excellent job. He may be too modest to show it but I wanted to give him some kudos for some excellennt work. The current implementation of JTip will cutoff if its too close to the bottom of the screen. Karl modified it so it scrolls up. Check it out: http://test.learningjquery.com/jtiptest.htm Just make your browser small enough so that the JTip would normally be cutoff. Great job Karl! Rey... _______________________________________________
[jQuery] When / how did you find out about jQuery?
I can't recall the exact date, but it was almost a year ago. I stumbled across a post John had made on someone else's Javascript blog describing the chained function approach, which led me to his own blog post that had the beginnings of what was to become jQuery. http://ejohn.org/blog/selectors-in-javascript/ I was just starting to use Behaviour at the time; all of the frameworks seemed way too bloated. When I saw the jQuery syntax I was blown away. It reminded me of Paul Graham's essay "Succinctness
[jQuery] Request: Window plugin
There's another one that could be converted to jQuery: http://www.net4visions.com/dev/dialog/dialog.htm -----Original Message----- From: Dan Atkinson [mailto:dandementia@googlemail.com] Sent: Wednesday, September 27, 2006 5:30 PM To: discuss@jquery.com Subject: Re: [jQuery] Request: Window plugin Yeah, I'm looking to emulate that in jQuery (under the name of jAlerts/jWindows) for some time. The basic functionality is already available in thickbox, so it'll probably be easier to expand that. I've
[jQuery] jButton released!
> I wrote a new plugin which can transform an image into a button.
[jQuery] When / how did you find out about jQuery?
I guess you could say I was a late-comer to JQuery. My first introduction to the library was about four months ago, when I was searching for new Javascript techniques to amplify some scripts I'd written. I happened across the "15 days of JQuery" site, and have been hooked since. Great stuff! Kevin _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] When / how did you find out about jQuery?
I first heard of jQuery 1.0 in A List Apart article by Nick Rigby in June 06 titled "Prettier Accessible Forms" (http://alistapart.com/articles/prettyaccessibleforms). At that time, I wouldn't even touch Javascript because the pain it was. But now, with jQuery, I've become a very confident and happy javascript programmer. The rest is history... -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Sam Collett Sent: Wednesday, September 27, 2006
[jQuery] jButton --> Moved
The jButton plugin can from now on be found at: http://gilles.jquery.com/jButton/ -- Gilles _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Use $.extend to clone object
Hi all, is it possible to use $.extend to clone an object? var template = { ... }; clone = $.extend({}, template); -- Klaus _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] AJAX module - further suggestions?
Hi folks, after the discussion about the global ajax handlers and the question, if the form plugin should be merged into the core, I'd like to know wheather anyone has any other issues, problems or ideas for the AJAX module that can be addressed. Now is the time! I'm currently adding lots of tests to make sure that the current code works as documented (eg. timeout doesn't seem to work as expected) and any refactorings won't break existing code. Planned are primarily bugfixes, then the refactoring
[jQuery] jQuery Projects
He's been sick man. > From: Rey Bango > > John! Where the heck you been man? We've missed your input here. :o) > > Rey,,, > John Resig
[jQuery] Help finding parent element
What's the preferred/simplest way to get hold of the immediate parent of a DOM element? I've got a table in which some cells are editable (I'm using the excellent editable plugin by Dylan Verheul). When a cell is changed, the database gets updated and the Ajax callback needs to recalculate the sum of the cells in the row. So, I have this in the editable object: callback:function(){ recalcEstimate ( myCell ) ; // myCell is jQuery obj containing one TD tag } and this is what gets called: function
[jQuery] Vote for the Visual JQuery Magazine DZone article
Vote it up guys: http://www.dzone.com/links/free_new_online_ajax_magazine.html Rey... _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Creating elements on the fly...
Maybe someone could shed some light on this. When inserting an item into a select box (id=test), this code works: var optn = document.createElement("OPTION"); optn.text = $(this).find('nome').text(); optn.value = $(this).find('id').text(); $( "#test" ).append(optn); But this code does not: $( "<option value='" + $(this).find('id').text() + "'>" + $(this).find('nome').text(); + "</option>" ).appendTo( "#test" ) ; Even this very simplistic example doesn't work. $( "<option
[jQuery] No more IE6 background-flicker!!!
Before y'all get too excited about this, keep in mind that it affects maybe one visitor out of ten thousand. The only people who run into this flicker problem are those who have gone into Internet Options / Temporary Internet Files / Settings and changed the "check for newer versions" setting to "every visit to the page". Probably *less* than one in ten thousand. :-) -Mike
[jQuery] The Ajax Experience
As it turns out, I'm going to be at the AJAX Experience in Boston in October. Is anyone else (other than John, who's giving a couple of lectures) planning on being there?<br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] tweenbox plugin - in IE not working, please fix
Hey, anyone know the reason why tween box is not working correctly in IE? from looks of it, it just takes the user to a page that should of open in a inner window (thinkbox) ... working fine in Firefox , no luck in IE, can anyone help? thanks, -- Nilesh B. Patel _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Looking for a Linux Webadmin listserv
Don't know of a list, but I'm a unix admin with 12 years of experience. You can email me directly if you want. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Tim Gossett Sent: Tuesday, September 26, 2006 3:14 PM To: jQuery Discussion. Subject: [jQuery] Looking for a Linux Webadmin listserv I don't mean to be too off-topic, but I've been looking for a listserv similar to this one as a resource for webadmins... specifically for administering
Next Page