Re: [jQuery] Right Click Plugin / Function

2007-02-12 Thread Dan Atkinson
, Dan Atkinson [EMAIL PROTECTED] wrote: Feel free to jQuerify this: function click(e) { if (document.all) { if (event.button==2||event.button==3) { //IE //right click has been clicked //Return false will disabled

Re: [jQuery] Right Click Plugin / Function

2007-02-12 Thread Dan Atkinson
Nope. No reason whatsoever. petersom3000 wrote: Is there a reason for not using the oncontextmenu event? http://www.google.com/search?q=oncontextmenu Dan Atkinson wrote: Feel free to jQuerify this: code function click(e) { if (document.all) { if (event.button==2

Re: [jQuery] Right Click Plugin / Function

2007-02-11 Thread Dan Atkinson
Feel free to jQuerify this: function click(e) { if (document.all) { if (event.button==2||event.button==3) { //IE //right click has been clicked //Return false will disabled return false; } } else {

Re: [jQuery] jQuery for President

2007-02-11 Thread Dan Atkinson
If his policies are like his web developers JavaScript, we'll be cheering in the democrats come next election! Karl Swedberg-2 wrote: On Feb 10, 2007, at 7:42 PM, Glen Lipka wrote: http://www.barackobama.com (jQuery!) Although they are using 1.04. Hello? I was all on board until I

Re: [jQuery] asp.net and jquery

2007-02-10 Thread Dan Atkinson
Hey! Yes, I'm a ASP.NET (C# only) developer and I'm involved with two major companies which I have pushed jQuery into as part of their JS usage. JS had been used before for something similar to a thickbox, and other things, but I also want to push other simpler things which enhance the user

Re: [jQuery] thickbox improvements

2007-02-05 Thread Dan Atkinson
Did you do a search on thickbox before you posted this?! This has been mentioned on the mailing list before, and now thickbox development has been moved to the SVN, with the first step being its refactoring. Alexandre Plennevaux-2 wrote: Some nice hacks have been proposed on the thickbox

Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-02-03 Thread Dan Atkinson
Hey. I have to see that it seems odd that you chose MP4 as the method to show it to the world. Would it not have been easier to make it an FLV? John Resig wrote: A new screencast is up that takes an introductory look at using the Firebug Firefox Extension and jQuery together - combining

Re: [jQuery] Embedding jQuery in a Greasemonkey script

2007-01-31 Thread Dan Atkinson
This was the idea behind my Firefox extension which is basically a Greasemonkey script that utilises a local copy of jQuery, rather than accessing a remote version. The obvious benefits include file download times. Blair Mitchelmore-2 wrote: I would guess that the best way would be to pack

Re: [jQuery] remote ajax with jquery...

2007-01-31 Thread Dan Atkinson
As much as I enjoyed this demo, my brain has trouble parsing and rendering HTML and JavaScript, and therefore I didn't get the full effect of the 'demo'. Is it possible for you to put this demo in a place which I am able to sample the demo-ness of it, please? It does sound interesting! Cheers.

Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Dan Atkinson
in wordpress? For instance, I tried to include a script tag but it seems wordpress mistook it for javascript and stripped most of it out. I was frustrated and didn't have time to experiment. Oh and I did use the gtr; (or simmilar) pseudo tags. andreas On Jan 29, 2007, at 20:53 , Dan Atkinson

Re: [jQuery] jQuery for Wordpress

2007-01-31 Thread Dan Atkinson
, and script tags get stripped out completely ... am I missing something? Andreas On Jan 31, 2007, at 13:49 , Dan Atkinson wrote: I'm sorry? A tutorial on how to write good tutorials? If you want to enable JS inside posts, go here and download this plugin: http

Re: [jQuery] jQuery for Wordpress

2007-01-30 Thread Dan Atkinson
Yes, it's definitely good. It's also a bonus for me, as I hold the top Google ranking for almost every term relating to WordPress and jQuery. It almost makes me want to slot in an AdWords plugin! :) Jörn Zaefferer wrote: Dan Atkinson schrieb: 2) jQuery and Interface has been added

Re: [jQuery] Reload inline content for thickbox

2007-01-30 Thread Dan Atkinson
It'll probably best to have something built into it which just empties the existing content window, whilst getting the new content. Kyle Buttress wrote: Just wondering if there is any way to reload the inline content of a thickbox window without closing and re-opening the window. When I

Re: [jQuery] jQuery for Wordpress

2007-01-29 Thread Dan Atkinson
trunk. The second one didn't surprise me very much, and I'm glad that Matt is finally listening to his users, who overwhelmingly desire jQuery. This should mean that when 2.2 is released on April 23rd, jQuery and Interface will be part of the default core. Dan Atkinson wrote: Ok folks, I'm

Re: [jQuery] Mobile application

2007-01-26 Thread Dan Atkinson
Aye. I happen to find the Windows Mobile SDK to be particularly useful. I don't know anything about apps for Blackberry's though, although they're slowly taking off here in England, I don't think much of them. I myself have a Windows Mobile and the Blackberry's just done match up in my opinion.

Re: [jQuery] Thickbox Suggestion

2007-01-18 Thread Dan Atkinson
Can't you just force the mime type in the ASP.NET page so that, even though it renders the page as HTML, the image is shown as normal? Sam Collett wrote: I have a suggestion for Thickbox (if there is to be another version) in regards to showing images. I stream images to the user via an

Re: [jQuery] Retriving actual height of element in IE *and* FF

2007-01-13 Thread Dan Atkinson
(height,$(#content).height()+px); Cheers, Dan Atkinson Karl Swedberg-2 wrote: Dan, .height() was pulled out of 1.1a, but it's back in as of 1.1b. If you're using 1.1a, that could be the problem. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Retriving actual height of element in IE *and* FF

2007-01-13 Thread Dan Atkinson
Lol! Yes, that would make sense! Thanks for the responses on this. Brandon Aaron wrote: .height() is also a setter and defaults the unit to pixels if not provided. So you can do it like this: $(div#content).height( $(#content).height() ); -- Brandon Aaron On 1/13/07, Dan Atkinson

[jQuery] Retriving actual height of element in IE *and* FF

2007-01-12 Thread Dan Atkinson
Hey there! I'm currently doing some jQuery work on my blog which involves some a bit of code to handle internal link clicks (same domain, not #) which will change anything in the main content div: * Sets the height of the main content div to the current height * Fadeout the child elements

Re: [jQuery] Retriving actual height of element in IE *and* FF

2007-01-12 Thread Dan Atkinson
I think using innerHeight in dimensions overcomes this one. Cheers. Dan Atkinson wrote: Hey there! I'm currently doing some jQuery work on my blog which involves some a bit of code to handle internal link clicks (same domain, not #) which will change anything in the main content div

[jQuery] jQuery extension for Firefox

2007-01-07 Thread Dan Atkinson
Hey all! I'm currently in the review process for an extension which basically puts jQuery on EVERY page. I did it after reading something on learningjquery which uses a bookmarklet. I'm pretty sure that there will be issues surrounding it (GMail had a weird, long button when I put jquery on my

Re: [jQuery] slideUp/Down flicker with 1.0.4

2007-01-05 Thread Dan Atkinson
Yes. I agree. -- View this message in context: http://www.nabble.com/slideUp-Down-flicker-with-1.0.4-tf2919581.html#a8175956 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] slideUp/Down flicker with 1.0.4

2007-01-05 Thread Dan Atkinson
Er... I didn't say that. -- View this message in context: http://www.nabble.com/slideUp-Down-flicker-with-1.0.4-tf2919581.html#a8176392 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com

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

2007-01-04 Thread Dan Atkinson
Christof, I'm afraid that I simply don't take Safari users into account. Hardly a great thing, but I focus on three browsers: Firefox and IE7, and then IE6. In that order. The work I do is targetted at corporate users who run Windows 2000 and Firefox, and all the JS work I do is for those users.

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

2007-01-04 Thread Dan Atkinson
That's a good, workable solution! Cheers, Dan Christof Donat wrote: Hi, I'm afraid that I simply don't take Safari users into account. Hardly a great thing, but I focus on three browsers: Firefox and IE7, and then IE6. In that order. The work I do is targetted at corporate users who

Re: [jQuery] Please wait.. tutorial

2007-01-02 Thread Dan Atkinson
This looks really cool! I wonder if anyone has something like this which temporarily ghosts specific elements for a period of time at all, instead of entire pages? Cheers, Dan Atkinson AHeimlich wrote: http://www.malsup.com/jquery/block/ might interest you. Happy New Year! --Aaron

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

2007-01-02 Thread Dan Atkinson
like: addScript('jquery.js'); I would recommend doing a search on the Nabble mailing list page for this, as it has been covered many times before. Cheers, Dan Atkinson bohumil wrote: Hello. I want to load file jquery.js into my web page dynamically. I tried this code: script

Re: [jQuery] http://www.acko.net/blog/jquery-menu-scout -- jQuery Menu Scout

2006-12-11 Thread Dan Atkinson
This is good, but did you have to put the link in only the title?! Ⓙⓐⓚⓔ wrote: saw this today, about jquery on drupal.org! -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- View

Re: [jQuery] Text reflection

2006-12-07 Thread Dan Atkinson
There's nothing in terms of existing HTML standards (AFAIK) that enables text to be shown upside down in a browser, so I would say, no. The only other way would be converting existing text into a picture (either using something like the PHP image libraries, or some JS text-to-image replacement (I

Re: [jQuery] Text reflection

2006-12-07 Thread Dan Atkinson
Canvas support isn't exactly that strong amonst the browsers. Klaus Hartl-3 wrote: Dragan Krstic schrieb: There's some ideas: do it by SVG and WML, or to generate gif or bmp by javascript What about canvas? -- Klaus ___ jQuery mailing

Re: [jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Dan Atkinson
Cheers! It's looking sweet! Paul Bakaus wrote: Hi guys, great news from Joe! Firebug 1.0 is now in open beta, everyone should be able to download it from getfirebug.com today later on (read the blog post). I'll stay idle pressing F5 until the link is there ;-) -Paul -- Paul

Re: [jQuery] Non-website usage: Twadget

2006-12-03 Thread Dan Atkinson
On your site, you ask why Microsoft decided on 'four decimal places' for version numbers. This is a standard for most software, and since these widgets are likely to be changed and updated frequently, they probably thought it best that developers had better version control in their code. The

Re: [jQuery] Stop using thickbox!

2006-11-28 Thread Dan Atkinson
Going by the title, I fear that this is more wishful thinking and showmanship than anything else. This may sound quite arrogant, but then, so is your summary of thickbox. I'm afraid that the complete lack of graceful degradation means that this is one plugin I simply cannot use. I do like the

Re: [jQuery] Make Thickbox loop?

2006-11-16 Thread Dan Atkinson
You can just just check the array length against the current loop counter. If the two are the same, then just reset it to zero. The should work. agent2026 wrote: I would really like to have thickbox loop though all the images with the next/prev buttons, so hitting next from the last image

Re: [jQuery] window plugin: update

2006-11-15 Thread Dan Atkinson
Gilles, Is there any new information about this? Webunity | Gilles van den Hoven wrote: Hi Guys, You've probaly seen the Ajaxian post on the YUI dialog. Well i am happy to report that i've almost completed my plugin (after i released cssHover i did a complete rewrite) and it offers

Re: [jQuery] 3D Carousel

2006-11-15 Thread Dan Atkinson
Nice! Almost Flash-like! Greased Lightbox... Nice! For those who want more info about it, and its Greasemonkey script, go here: http://shiftingpixel.com/lightbox/ Stefan, Excellent work yet again! Stefan Petre wrote: http://interface.eyecon.ro/development/demos/carousel.html

Re: [jQuery] Draggable Notepad

2006-11-15 Thread Dan Atkinson
Brujah wrote: I am trying to write a draggable notepad. I use a textarea where the user can enter data. It basically works, but while I move the box the text is not displayed. What could be the problem here? The code is small:

Re: [jQuery] How to display error/validation messages?

2006-11-14 Thread Dan Atkinson
On your plazes page, the field highlighting doesn't seem to be correct. I would need to press it twice to get the right field highlighted. Klaus Hartl-3 wrote: Jörn Zaefferer schrieb: Hi folks, what is your preferred approach to display messages? Think of validation messages for a form.

Re: [jQuery] new jQuery API draft

2006-11-12 Thread Dan Atkinson
Kinda reminds me of the Java API. Not that that's a bad thing, of course! :) Good stuff! Jörn Zaefferer wrote: Hi jQueryians, I'd like to present you a first draft for a new stylesheet for the jQuery API: http://joern.jquery.com/api-draft/cat.xml There is still lot's of work to do,

Re: [jQuery] Media plugins

2006-11-09 Thread Dan Atkinson
I really like what you've done there. It's neat and very clean! malsup wrote: I've just posted some convenience plugins for dealing with Quicktime, Flash, and mp3 media. Source and demos can be found here: http://malsup.com/jquery/media/ Mike

Re: [jQuery] New Plugin: ODBCDate functions

2006-11-09 Thread Dan Atkinson
Hi there. Your JS code link is dead! :) cjordan wrote: Hi folks, Today, I was in need of a function to parse strings in the ODBCDateTime format. I needed to convert a string in the ODBCDateTime format to a valid JavaScript Date object, and vise versa. So instead of just writing the

Re: [jQuery] New Plugin: Xpander

2006-11-08 Thread Dan Atkinson
Jeffrey McClure wrote: Are you trying to load content into a div from a different domain? No. That's not possible. -- View this message in context: http://www.nabble.com/New-Plugin%3A-Xpander-tf2411102.html#a7234294 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] Links to Plugins

2006-11-08 Thread Dan Atkinson
Wouldn't it be best to put these into a page (say jquery.com/plugins/ ! ;)) and then we can update them when needed? Stephen Woodbridge wrote: Hi all, I've been collecting links that people have posted about various plugins that they are developing over the past month or so. Sorry this

Re: [jQuery] New Dev center by Opera

2006-11-07 Thread Dan Atkinson
Cheers! There's not nearly enough publicity about Opera for my liking. What, with it being a more powerful browser than Firefox and all... Klaus Hartl-3 wrote: Hi all, this is not exactly jQuery related, but there's a new Dev center by Opera, and as one could expect from them there are

Re: [jQuery] New Dev center by Opera

2006-11-07 Thread Dan Atkinson
Ahh... But is the built in adblocker in Opera better than Firefox without one?! I mean, how many ads does Firefox block without the adblocker installed... And how many does Opera block by default?! Jörn Zaefferer wrote: There's not nearly enough publicity about Opera for my liking. What,

Re: [jQuery] New way of animating

2006-11-06 Thread Dan Atkinson
I'm sorry, I'm not convinced. Pretty much everything in there is in jQuery standalone. I'm not sure about the 'killer feature' either. An expanding div is not a killer feature. That is effectively just like $.show('slow'). The same killer feature code could be written in about an eighth of this

Re: [jQuery] New way of animating

2006-11-06 Thread Dan Atkinson
of animations. Rey... Dan Atkinson wrote: There's a whole page of various plugins that can be attached to jQuery. http://jquery.com/plugins/ In my opinion, going after individuals who show their work would not only be a childish 'me too'-ism, but it would be damaging to the reputation

Re: [jQuery] I hate coding! (was:Star Rating Plugin?)

2006-11-05 Thread Dan Atkinson
You won't make many friends making such statements as that. First off, you've got my ire, because you think HTML is for kids, and yet you're clearly unable to write it yourself. Why the XML declaration is in there is beyond me. Besides, JavaScript and HTML go hand in hand. Secondly, there isn't

Re: [jQuery] IE Stylesheet API

2006-11-03 Thread Dan Atkinson
Ahh... Where would we be without quirksmode?! That's a great resource for DOM. Brandon Aaron wrote: This is as close as I got: http://www.nabble.com/Style-sheet-modification-snippet-tf2484859.html#a6928891 I use quirksmode as my main reference:

Re: [jQuery] Getting the favicon of an iframe?

2006-11-02 Thread Dan Atkinson
Oh, I know! I made subsequent changes, but I basically ripped the code from various sources as an example. I've since refined it and it works much better now. wycats wrote: The drag/drop action is very choppy in FF Mac. Haven't tested in other browsers. -- Yehuda On 11/1/06, Dan

Re: [jQuery] Don't forget accessibility

2006-11-02 Thread Dan Atkinson
dave.methvin wrote: For a real eye opener, unplug your mouse for a day and try to use some of the Web 2.0 pages people are building. Another great eyeopener would be unplugging your monitor for the day and trying to play a game of solitaire. But enough about geeky drinking games...

[jQuery] Getting the favicon of an iframe?

2006-11-01 Thread Dan Atkinson
Hey there! Last night, I wrote something really simple (and buggy) for my collegue, to demonstate how quickly one could write something fairly powerful in jQuery. The result was http://www.dan-atkinson.com/jQuery/jStatus/index.html this . I intend to flesh it out, but it was a demonstration of

Re: [jQuery] Widget Pack and Magazine Issue 2

2006-10-31 Thread Dan Atkinson
Hey, I think it's tomorrow now. I'm just wondering what you've decided to put together for the widget pack? Cheers wycats wrote: Hey guys, I've made some progress collecting widgets for the Visual jQuery Widget Pack. I will be posting later today with a list of what I've come up with

Re: [jQuery] New Plugin: Xpander

2006-10-29 Thread Dan Atkinson
blindup/blinddown routine? SEAN O Dan Atkinson wrote: Hey there. I'm trying this out on a fresh Wordpress install (http://www.guerillaweb.net/home/) but I'm having MAJOR troubles trying to integrate Xpander, in that it crashes -every single time- in Firefox 2.0 and reports

Re: [jQuery] New Plugin: Xpander

2006-10-28 Thread Dan Atkinson
Hey there. I'm trying this out on a fresh Wordpress install (http://www.guerillaweb.net/home/) but I'm having MAJOR troubles trying to integrate Xpander, in that it crashes -every single time- in Firefox 2.0 and reports 'unknown runtime error' in IE7. I've looked at the code, and there isn't a

Re: [jQuery] Oooh! These are pretty!

2006-10-27 Thread Dan Atkinson
I'm not sure about the technical merit of drawing 100 circles on a screen to drag around, or what the point of it would be. The same thing could be achieved with jQuery and draggables in Interface. The result wouldn't be large files, and it would be quicker. The clock would be nice, but isn't

Re: [jQuery] PLUGIN: In place AJAX editing of TableSorter

2006-10-25 Thread Dan Atkinson
Hey! I really like this! Would it be possible to have something check if a field has been modified, before saving it? That way, you're not needlessly updating information for a value that hasn't changed. Cheers. Brice Burgess wrote: jQ gurus - I've been working on a plugin for

Re: [jQuery] interface: how to get canvas elements to stay visible while dragging

2006-10-25 Thread Dan Atkinson
Are you referring to ghosting like in the demo? http://interface.eyecon.ro/demos/drag.html Andy Triboletti wrote: I would like to drag a canvas element around, and have the screen updated while dragging it like it does with a div. The code below lets me drag the canvas, but the screen

Re: [jQuery] Window Dialogues

2006-10-24 Thread Dan Atkinson
One that's already done in a way. Uses the pre-existing thickbox though. http://bryanbuchs.com/tb_dialog/ wycats wrote: Anyone know of any good movable, expandable and minimzable window dialogs (like http://prototype-window.xilinus.com/index.html for Prototype) -- Yehuda Katz Web

Re: [jQuery] expand one - collapse the others

2006-10-23 Thread Dan Atkinson
How bout doing $().toggle? Also, $(p).addClass(classname); -- that will add a class. badtant wrote: hi! i have the following list: ul li h2Kapitalförsäkring/h2 p class=question- q/p p class=answera/p /li li h2Kapitalpension/h2 p class=question- q/p p class=answera/p /li /ul

Re: [jQuery] mouse gestures?

2006-10-20 Thread Dan Atkinson
the page up or down with the cursor. Either way, the amount of script needed for this seems excessive (unless that's normal for YUI :-S ). Armand Datema wrote: just found another example YUI this time http://blog.davglass.com/files/yui/gestures/ On 10/2/06, Dan Atkinson [EMAIL

Re: [jQuery] Extended tabs in Thickbox iframe

2006-10-20 Thread Dan Atkinson
Do you have a link to a (non)working example that you can put on the web? bmckenzie wrote: Hello. I've run into a problem combining two plugins. When displaying a page that uses the extended tabs plugin jq-tabs v 0.9 (http://jquery.com/docs/Plugins/ExtendedTabs/) in an iframe created

Re: [jQuery] Animated Menu

2006-10-19 Thread Dan Atkinson
Something like: http://jquery.com/docs/Plugins/limitQueue/ This allows you to limit the queue length. Steve Urmston wrote: Hi folks I've been trying to build a menu where an image follows to match the hovered link Example: http://clearbar.co.uk/navtest.html Problem is the animate

Re: [jQuery] ThickBox in Filemanager

2006-10-18 Thread Dan Atkinson
PDFs in object tags have numerous problems and the widespread consensus is generally not to use such things. PDFs in iframes are possible (https://secure.marketech.us/php/framedemo/), and I might just retract what I said earlier if I can get a PDF to open in a thickbox iframe. Michael Geary

Re: [jQuery] Thickbox Extensions - Dialog Monolog [REPOST]

2006-10-18 Thread Dan Atkinson
Loving it loving it! I called my creation jAlert, which has similar functionality, but I never implemented the monolog. bbuchs wrote: [Original message ended up in the API Discussion thread - sorry!] I'm a big, big fan of Cody's Thickbox script. I'm using it for a web app I've been

Re: [jQuery] ThickBox in Filemanager

2006-10-17 Thread Dan Atkinson
I'm not sure how it all works fine if it doesn't work at all... As far as I can tell, you open a thickbox for links like xls and doc files, and the browser tries to save it. Or open it in its default application. This is because saving or opening is the default action of the browser for that

Re: [jQuery] prototype-and-jquery-benchmarked

2006-10-17 Thread Dan Atkinson
Ugh... Please do a quick search. :( http://www.nabble.com/Benchmark%3A-Prototype-and-jQuery-tf2449929.html MI JIN KIM wrote: http://claudio.cicali.org/article/100/prototype-and-jquery-benchmarked ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] jquery snapshots

2006-10-17 Thread Dan Atkinson
What's wrong with building it? Mika Tuupola wrote: On Oct 16, 2006, at 17:14, Dan Atkinson wrote: Use the SVN version if you want to do that sort of thing. http://jquery.com/src/ - Shows you the SVN access address. AFAIK this has to be built first before it is usable. I am looking

Re: [jQuery] jquery snapshots

2006-10-17 Thread Dan Atkinson
much hassle for you if you want it now now now ;-) Mika Tuupola wrote: On Oct 17, 2006, at 15:45, Dan Atkinson wrote: What's wrong with building it? Argh... There is nothing wrong with building it. I just had one very simple question. Is there a snapshot (not svn checkout) available

Re: [jQuery] ThickBox in Filemanager

2006-10-17 Thread Dan Atkinson
from malforming JS to open executables without your permission?). Olaf wrote: Dan Atkinson schrieb: I'm not sure how it all works fine if it doesn't work at all... Oh, sorry. I work on the Script. I have mutch change. 1 Demo says more than 1000 (english) Words ;) Look this: http

Re: [jQuery] Dragging multiple selected items using selectables, idrag and idrop

2006-10-16 Thread Dan Atkinson
Well, selecting is already shown in selectables (http://interface.eyecon.ro/demos/select.html), so I'm not going to go into that, but you could group these elements by giving them all a related class from which to drag. For example, here are 5 different elements: div id=foo class=box1blah/div

Re: [jQuery] Interface Draggable problem

2006-10-16 Thread Dan Atkinson
You could try manually re-setting the overflow on revert. It would be a temporary solution. nezza wrote: I have a list of draggable article divs inside a container div. The container div is styled with an overflow: auto to allow users to scroll up and down and view the articles within.

Re: [jQuery] jquery snapshots

2006-10-16 Thread Dan Atkinson
Use the SVN version if you want to do that sort of thing. http://jquery.com/src/ - Shows you the SVN access address. Mika Tuupola wrote: Is it possible to download a nightly snapshot of jquery somewhere? I would like to test recent bugfixes. Especially those affecting $

Re: [jQuery] Column totals in sortable table

2006-10-15 Thread Dan Atkinson
Put them in the table footer and sort only the table body? bmckenzie wrote: What's an efficient way to keep column totals at the bottom of a table sorted with the tableSorter plugin? Thanks. -- Bruce http://www.2MinuteExplainer.com

Re: [jQuery] New site launched using jQuery

2006-10-13 Thread Dan Atkinson
It looks cool! It's a shame that they don't have it in my language though - En-GB. :/ :P Having Show('slow') would definitely make the menu animations a bit smoother though. Otherwise, very cool! Brandon Aaron wrote: We just relaunched the Age of Empires III Community website with a new

Re: [jQuery] jQuery leaks...

2006-10-13 Thread Dan Atkinson
Yeah, there is already discussion about that particular article (which isn't strictly accurate). http://www.nabble.com/Fixing-jQuery%27s-Memory-Leak-tf2358975.html Rich Manalang wrote: I was just reading Jack Slocum's article on easy ways to avoid javascript leaks

Re: [jQuery] Greybox Redux (Reworked)

2006-10-13 Thread Dan Atkinson
Hey there, Can you provide a demo link of it, please? Cheers, Dan Benjamin Yu wrote: Hi, I just wanted to submit this rewrite of the greybox redux for comment/publication. I did the following major changes: 1. Rewrote the internals to conform to jQuery's plugin conventions. 2.

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Dan Atkinson
FYI: Every single one of those links leads to a 'forbidden' page. Karl Swedberg-2 wrote: On Oct 6, 2006, at 11:41 PM, Rey Bango wrote: I recall a JQuery cheat sheet floating around. Anyone have the link to that? Hi Rey, They came from Nilesh Patel. PDF

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Dan Atkinson
.png http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1_pg2.png Karl Swedberg-2 wrote: On Oct 9, 2006, at 6:18 AM, Dan Atkinson wrote: FYI: Every single one of those links leads to a 'forbidden' page. Karl Swedberg-2 wrote: On Oct 6, 2006, at 11:41 PM, Rey Bango

Re: [jQuery] For Brandon Aaron

2006-10-03 Thread Dan Atkinson
It's not all as black and white as that article suggests. Whilst the user should be setting to null (or their JS framework library), it is ultimately the responsibility of the browser to prevent memory leaks from occuring. Some may point to Dojo and laugh at the memory leakage in their mail

Re: [jQuery] Fisheye

2006-09-30 Thread Dan Atkinson
I've got a huge smile on my face right now! You've done a great job on this total source weighs in at about 8kb + jQuery, which is great as iUtil.js is resuable for other functions as well. Excellent work Stefan! Really great! Now Dojo has one less cool thing that jQuery hasn't! ;) Stefan

Re: [jQuery] Interface: Autocomplete fixes (attn: Stefan)

2006-09-29 Thread Dan Atkinson
Although only relevant to the example, searching for 'A coru' provides an interesting, if cold location for Spain! aedmonds wrote: If you've had some difficulty using the Autocompleter included in the wonderful interface package, I found some fixes for bugs I was experiencing. These bugs

Re: [jQuery] Widget Challenge

2006-09-29 Thread Dan Atkinson
the original list height and width, and it would look like a real magnification (even dojo does not have this effect!) Maybe I can work something out again, improve it a bit further. See ya! 2006/9/28, Dan Atkinson [EMAIL PROTECTED]: As an aside, I wrote out this in a webpage

Re: [jQuery] Widget Challenge

2006-09-29 Thread Dan Atkinson
This is exactly what I was working on last night! I have already been able to track mouse proximity around an element (not exactly rocket science!) but I removed the script and HTML from the page because I didn't want some folks getting confused. Determining its distance from dead centre,

Re: [jQuery] Interface: Autocomplete fixes (attn: Stefan)

2006-09-29 Thread Dan Atkinson
No worries chief! I was just being pinicky! :) Stefan Petre wrote: When I imported the database i used a wrong version for collation 2006/9/29, Dan Atkinson [EMAIL PROTECTED]: Although only relevant to the example, searching for 'A coru' provides an interesting, if cold location

Re: [jQuery] Widget Challenge

2006-09-29 Thread Dan Atkinson
I'll have a look at positioning now. Also, putting a link around it seems to break it. I've messed about with it, but all it does now is twitch! :-) Mark Gibson-8 wrote: Dan Atkinson wrote: Why the bottom? Is that where the Apple menu is? I don't know, I don't have an Apple computer

Re: [jQuery] Mailing List Explosion

2006-09-29 Thread Dan Atkinson
I agree. Although you can have add-ons to most popular forums which can make it act as a mailing list, so users can still interact without the need to visit the forum. The searching would be a LOT easier to do in the forum though. John, I'd be more than happy to help with the creation of a

Re: [jQuery] Mailing List Explosion

2006-09-29 Thread Dan Atkinson
I use Nabble on this forum, as it threads subjects, and that's about it for the good points. The search function has multiple errors and I often find that messages aren't posted. It would be sweet though, to have different forum sections as everything is lumped into one place on this mailing

Re: [jQuery] Mailing List Explosion

2006-09-29 Thread Dan Atkinson
Not practical enough. There should be some form of moderation. Not to keep out 'bad eggs', but to keep things tidy. This isn't exactly easy to do in a Google Group, and keeping it on your own server gives you more control over the content. Brandon Aaron wrote: Why not setup a google group?

Re: [jQuery] Widget Challenge

2006-09-29 Thread Dan Atkinson
Yehuda, Can you put this on the jQuery blog page, to generate more interest, please? It has so few articles, and something like this shouldn't be buried away in the mailing list. This way, we can digg the story, and bring more attention to the widget challenge. We could also begin a

Re: [jQuery] Mailing List Explosion

2006-09-29 Thread Dan Atkinson
Module as well that might prove useful. (www.pmachine.com/ee/) Josh On Sep 29, 2006, at 8:33 AM, Dan Atkinson wrote: Not practical enough. There should be some form of moderation. Not to keep out 'bad eggs', but to keep things tidy. This isn't exactly easy to do in a Google

Re: [jQuery] Debug Plugin

2006-09-28 Thread Dan Atkinson
I'm not sure if this works or not. I see three grey boxes, but Firebug isn't outputting a thing. I have the correct settings on to get messages and output, but nothing, nada. John Resig wrote: Hi Everyone - I'm currently down-and-out with a nasty cold, but I took a break and hacked up a

Re: [jQuery] Debug Plugin

2006-09-28 Thread Dan Atkinson
Hmm... Actually it does work but requires the page to refresh before it does anything! It looks cool John! Dan Atkinson wrote: I'm not sure if this works or not. I see three grey boxes, but Firebug isn't outputting a thing. I have the correct settings on to get messages and output

Re: [jQuery] off topic - sorry but I needed =P

2006-09-28 Thread Dan Atkinson
Yes. There are several sites that can create 'web 2.0' and 'beta' logos. Do a cursive Digg search to find a trillion and 65 stories on them. Rafael Santos wrote: i know i should only talk about jquery but im playing here and did it. I think it's funny for me =O how easy it is to make a

Re: [jQuery] Widget Challenge

2006-09-28 Thread Dan Atkinson
As an aside, I wrote out this in a webpage with a few choice icons. It doensn't really work in IE, but I thought I'd stick your code up there: http://dan-atkinson.com/fisheye/ Cheers, Dan Paul Bakaus wrote: Hi! I have put up a little function that does something like the fisheye

Re: [jQuery] Spread jQuery Request

2006-09-27 Thread Dan Atkinson
Na. I don't smoke. Do you mean articles that link to other articles, or chainables in terms of code, cause I'm not sure the latter is relevent. sunsean wrote: One word, chainables. ~Sean ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Spread jQuery Request

2006-09-27 Thread Dan Atkinson
\((.*)\)/)[1]; it's the dots. On 9/27/06, Dan Atkinson [EMAIL PROTECTED] wrote: Na. I don't smoke. Do you mean articles that link to other articles, or chainables in terms of code, cause I'm not sure the latter is relevent. sunsean wrote: One word, chainables. ~Sean

Re: [jQuery] Spread jQuery Request

2006-09-27 Thread Dan Atkinson
Ah right. Yes. I see now. Unfortunately, as Klaus said, jQuery no longer has this edge as other developers have cottoned on to this. Klaus Hartl wrote: Dan Atkinson schrieb: Ok. So how is this relevant to spreading jQuery? I hope I'm the only one who's confused. :s

Re: [jQuery] Widget Challenge

2006-09-27 Thread Dan Atkinson
Paul, That's a good start! I see what you're doing! A larger z-indexed div could be created around each fisheye image, and a calculation could be done to determine how far from the centre of the box the mouse cursor is. The image can then be scaled depending on this value. This also means that

Re: [jQuery] Request: Window plugin

2006-09-27 Thread Dan Atkinson
Yeah, I got involved with JavaWin a while back but moved on after I found jQuery. You can still see my name as one of the contributors! 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

  1   2   >