Re: [jQuery] JQuery Plugin: SpinBox / SpinButton Control (with no extramarkup)

2006-08-11 Thread Dylan Verheul
FF 1.5 shows arrows but otherwise doesnt work. IE6 works for me. On 8/11/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi George, very nice work so far. Some ideas: - min, max and increments would be very useful and quite easy to implement - concerning 'disallow non-numeric text': Sam wrote

Re: [jQuery] In-situ editing (Editable, etc.) disturbs layout

2006-08-14 Thread Dylan Verheul
Hi, The problem you describe is indeed due to the nature of the form element. Many browsers have given it a (hardcoded) style, a block with some margin. Also, the input or textarea created by editable could be styled. I'll look into the memory leakage part, but I've never really noticed it

[jQuery] Naming plugin files

2006-08-15 Thread Dylan Verheul
I've looked at quite afew plugins lately. Some of them I want to include in the PHP framework for Waarneming.nl I'm working on. What strikes me, is that all of them have a different naming system for files. I suggest we set a naming standard for jQuery plugin files that clearly marks them as

Re: [jQuery] Naming plugin files

2006-08-15 Thread Dylan Verheul
They don't line up nicely with jquery.js :-) On 8/15/06, Dimitar Spassov [EMAIL PROTECTED] wrote: What about these names: So editable would be in jquery.editable.js, DOM would be in jquery.dom.js. jq.editable.js, DOM would be in jq.dom.js. ___

Re: [jQuery] Autocomplete Plugin help

2006-08-27 Thread Dylan Verheul
My autoplugin does this with option minChars=3 http://www.dyve.net/jquery?autocomplete On 8/24/06, digital spaghetti [EMAIL PROTECTED] wrote: Hi there, Would anyone be able to help me out? I'm trying to code a livesearch widget for Wordpress using G. van den Hoven's Autocomplete plugin.

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
On 8/29/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yup. Its looks nice, but is rather unintuitive. I think one of the other autocomplete plugins used caching to load a set of proposals when there were enough characters, and then reduced the selection when the client enters more characters,

Re: [jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Dylan Verheul
Hi, I'll look into it. Dylan On 8/28/06, Rafael Santos [EMAIL PROTECTED] wrote: Hey, i couldnt find the owner of that autocomplete hosted in dyve.net... The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he may read it in this

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
Hi, I updated my autocompleter to work with 1.0. There's a weird CSS bug in the IE version, if someone figures it out, let me know. Stefan: Feel free to use my code, and integrate, daapt or copy it into your suite. We need a good jQuery suite for basic effects, and there should be a good

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
You need a callback. Real world example: I select a species thru autocomplete. I need to know how rare a species is inthe form, The autocomplete should pass me that, but it should not show up in the input field. On 8/29/06, Stefan Petre [EMAIL PROTECTED] wrote: Jörn Zaefferer wrote: Stefan

Re: [jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Dylan Verheul
Fixed. http://www.dyve.net/jquery?autocomplete Dylan On 8/28/06, Rafael Santos [EMAIL PROTECTED] wrote: Hey, i couldnt find the owner of that autocomplete hosted in dyve.net... The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he

Re: [jQuery] Autocomplete invasion

2006-08-30 Thread Dylan Verheul
On 8/29/06, Stefan Petre [EMAIL PROTECTED] wrote: Dylan Verheul wrote: Stefan, your plugin also seems to be missing the ability to search on a part of the result that is not at the beginning of the line. Example: if I would search for continents (let's say possible results: North

[jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-08-31 Thread Dylan Verheul
I can't figure out what is causing this, don't know whether it's a bug in my code, in Firefox or in jQuery. When I hover over the results of my autocompleter, Firebug reports an error: uncaught exception: Permission denied to get property HTMLDivElement.parentNode Detailed steps to reproduce:

Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-09-01 Thread Dylan Verheul
autocomplete plugin. Thanks for the work on it. I will try and track down this bug in a bit, if you don't get to it first -Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dylan Verheul Sent: Thursday, August 31, 2006 12:44 PM

[jQuery] Autocompleter documentation

2006-09-01 Thread Dylan Verheul
I should put this on the web somewhere, but for now I'll dump it on this list. This is the first draft of documentation for my Autocompleter. Use it to implement my plugin, or to pick up some ideas for your own autocompleter. Autocomplete - a jQuery plugin Usage: ==

Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-09-01 Thread Dylan Verheul
Looks like it, thanks. On 9/1/06, Sam Collett [EMAIL PROTECTED] wrote: I think it is actually a bug in Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=330961 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Autocomplete plugin: update for jQuery 1.01

2006-09-02 Thread Dylan Verheul
Simple explanation: e.preventDefault prevents the default event from happening jQuery should make this available in ie are you sure you have the right event as e? On 9/2/06, Geoff Knutzen [EMAIL PROTECTED] wrote: Hi Dylan, Thanks for making your autocomplete plugin for jquery. This

Re: [jQuery] Menu with SelectBox showing through

2006-09-02 Thread Dylan Verheul
There are several plugins that tackle this same problem. With the help of the people on the list, I found a nice solution that works with an iframe, but in a simpler way than most. You can see it work in http://www.dyve.net/jquery?autocomplete, I don't have my references here to point you to the

Re: [jQuery] jCarousel

2006-09-02 Thread Dylan Verheul
Woo woo! I was working on a carrousel myself, but I'm hopping on your bus now! Great work, really slick stuff! On 9/2/06, jsorgalla [EMAIL PROTECTED] wrote: Hi there, i'm the next one staying in the line of jQuery plugin authors. I've created a new plugin called jCarousel. Its inspired by

[jQuery] Thickbox 2.0 and dynamic content

2006-09-03 Thread Dylan Verheul
I think I've seen this subject before, so I thought I'd share my solution. Case: - I want to use Thickbox - Some of my content is dynamically provided through AJAX - The Thickbox urls in the AJAX content aren't thickboxed in $(document).ready() - Thickboxing twice gives me errors My solution: I

Re: [jQuery] Form fields: bug or request

2006-09-05 Thread Dylan Verheul
effect. So, to uncheck it you could do: $(#foo).removeAttr(checked); --John On 9/5/06, Dylan Verheul [EMAIL PROTECTED] wrote: I have a checkbox like this input type=checkbox id=foo value=1 checked=checked / I would expect this code to uncheck it: $(#foo).val(0); // any value != 1

[jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
Plugin: Autocompleter Url: http://www.dyve.net/jquery?autocomplete Docs: http://www.dyve.net/jquery/autocomplete.txt New options: The options below provide a better user experience (automatically picking results) and advanced markup options (the approach is a little different, but this could be

Re: [jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
the browser, but I haven't really tested it. On 9/6/06, Sam Collett [EMAIL PROTECTED] wrote: On 06/09/06, Dylan Verheul [EMAIL PROTECTED] wrote: Plugin: Autocompleter Url: http://www.dyve.net/jquery?autocomplete Docs: http://www.dyve.net/jquery/autocomplete.txt New options: The options

Re: [jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
works like a charm :-) thanks! I'll update the official version soon. On 9/6/06, Sam Collett [EMAIL PROTECTED] wrote: On 06/09/06, Dylan Verheul [EMAIL PROTECTED] wrote: I've been thinking about an elegant way to deal with long resul lists, but I havent gotten my head arouns a workable

Re: [jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
, Dylan Verheul [EMAIL PROTECTED] wrote: I've been thinking about an elegant way to deal with long resul lists, but I havent gotten my head arouns a workable solution that I can actually realize myself. I'm not that experience in je js/positioning/scrolling department. I think if you

Re: [jQuery] Checked input box

2006-09-06 Thread Dylan Verheul
$('#mycheck').attr(checked) On 9/6/06, David Gironella [EMAIL PROTECTED] wrote: I can check a chekckbox input Something that it input type=checkbox id=mycheck $('#mycheck').checked(); and return true or false ___ jQuery mailing list

Re: [jQuery] Checked input box

2006-09-06 Thread Dylan Verheul
the checkbox to checked, next clicks it remains checked. On 9/6/06, David Gironella [EMAIL PROTECTED] wrote: This always return to me null, if checkbox is checked or not. Giro. -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Dylan Verheul Enviado el

Re: [jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
I've updated the plugin with the changes and fixes discussed in this thread. Thanks Sam for the scrollIntoView tip, and to those that reported bugs. On 9/6/06, Dylan Verheul [EMAIL PROTECTED] wrote: Plugin: Autocompleter Url: http://www.dyve.net/jquery?autocomplete Docs: http://www.dyve.net

Re: [jQuery] Thickbox 2.1 crashes Opera 9.01

2006-09-06 Thread Dylan Verheul
I use javascript:document.write('') On 9/6/06, Jonathan Sharp [EMAIL PROTECTED] wrote: We've tried javascript:void(0) which has worked on occasion. We eventually broke down and created a static blank page and set the URL... -js On 9/6/06, Klaus Hartl [EMAIL PROTECTED] wrote: Hi,

Re: [jQuery] Bug with .css('z-index', '2')

2006-09-06 Thread Dylan Verheul
Actually, in DOM terms, zIndex is the only correct name. On 9/6/06, Isaac Weinhausen [EMAIL PROTECTED] wrote: I just tested your fix and it worked perfectly. Thanks for your post. My head was spinning for a while... Isaac Weinhausen wrote: I also have the same exact problem. 'Z-index'

Re: [jQuery] $.posting Array of Checkboxes

2006-09-06 Thread Dylan Verheul
Don't give them an id, give them a name. On 9/6/06, Rafael Santos [EMAIL PROTECTED] wrote: yeah... but the checkboxes are created dinamically... so i can have one checkbox or 20 checkboxes, how do i post these ones?? 2006/9/6, Marc Jansen [EMAIL PROTECTED]: Rafael Santos schrieb: Hey...

Re: [jQuery] Autocompleter update

2006-09-06 Thread Dylan Verheul
the need for the tabIndex by introducing a static counter). On 9/6/06, Dylan Verheul [EMAIL PROTECTED] wrote: Plugin: Autocompleter Url: http://www.dyve.net/jquery?autocomplete Docs: http://www.dyve.net/jquery/autocomplete.txt New options: The options below provide a better user experience

Re: [jQuery] Autocompleter update

2006-09-07 Thread Dylan Verheul
No, this shouldn't happen. Please - make sure you use latest jQuery and autocompleter If the problem persists - set up a test page - provide OS and browser info to reproduce the problem On 9/7/06, kain [EMAIL PROTECTED] wrote: hi, is there any particular reason why I'm getting as a result

Re: [jQuery] Autocompleter update

2006-09-07 Thread Dylan Verheul
selection. Dylan Verheul wrote: I've updated the plugin with the changes and fixes discussed in this thread. Thanks Sam for the scrollIntoView tip, and to those that reported bugs. On 9/6/06, Dylan Verheul [EMAIL PROTECTED] wrote: Plugin: Autocompleter Url: http://www.dyve.net/jquery

[jQuery] Autocompleter update (again)

2006-09-07 Thread Dylan Verheul
After all the IE transparecny issues, I decided to take a closer look at what I was doing at the DOM level, and I looked at solutions of other plugin authors. It turned out that I was using a workaround for a bug that existed in earlier versions of jQuery that had since been fixed. Also, the

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Dylan Verheul
[EMAIL PROTECTED] wrote: What problems are you seeing? http://www.dyve.net/jquery/?autocomplete seems fine to me right now on ie and ff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dylan Verheul Sent: Thursday, September 07, 2006 10:41 AM To: jQuery

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Dylan Verheul
to the wrapper DIV fo rnow to keep a working version online. On 9/7/06, Dylan Verheul [EMAIL PROTECTED] wrote: After all the IE transparecny issues, I decided to take a closer look at what I was doing at the DOM level, and I looked at solutions of other plugin authors. It turned out that I

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Dylan Verheul
HTMLDivElement.parentNode btw the problem of two nested divs I explained in my previous post has disappeared. 2006/9/7, Dylan Verheul [EMAIL PROTECTED]: After all the IE transparecny issues, I decided to take a closer look at what I was doing at the DOM level, and I looked at solutions

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Dylan Verheul
On 9/7/06, Jason Huck [EMAIL PROTECTED] wrote: This looks pretty nice. Attempting to implement now, got a couple of questions: 1) Using the CSS in your demo page, what's the easiest way to nudge the entire results list down a bit? For some reason mine are popping up directly over the input

[jQuery] Missing from core?

2006-09-08 Thread Dylan Verheul
Core/Plugin decisions are always difficult. However, I think adding size and position information to jQuery core would be a great benefit to plugin developers. There are lots of differences between browsers. I am very much experiencing this trying to make an autocompleter work cross browser.

Re: [jQuery] Missing from core?

2006-09-08 Thread Dylan Verheul
, it will be a direct plugin for jQuery, which can be automatically build into jQuery if you need it. It will have methods like innerHeight() and outerHeight for all objects (also document and window). 2006/9/8, Dylan Verheul [EMAIL PROTECTED]: Core/Plugin decisions are always difficult. However

Re: [jQuery] Autocompleter Safari bug

2006-09-13 Thread Dylan Verheul
Geoff and others, I have Mac and thus no Safari to debug in, but I could add a return false for you if youre not sure where to add it yourself. Geoff, sand me an email at [EMAIL PROTECTED] if you need assistance. Or, maybe someone with a Mac will test if a return false works? Dylan On 9/14/06,

Re: [jQuery] Google map plugin idea

2006-09-20 Thread Dylan Verheul
I have a fair amount of Google Maps experience. I wrote something like what Yehuda describes in PHP. It's actually not really hard to make in jQuery, but when you seriously get into Google Maps, you'd probably not have too much need for a plugin like that. On 9/19/06, Jörn Zaefferer [EMAIL

Re: [jQuery] Google map plugin idea

2006-09-21 Thread Dylan Verheul
Klaus, I changed the check to // If we aren't supported, we're done if (!GBrowserIsCompatible || !GBrowserIsCompatible()) return this; Thanks for your input. Dylan On 9/21/06, Klaus Hartl [EMAIL PROTECTED] wrote: Fil schrieb: @ Dylan Verheul [EMAIL PROTECTED

Re: [jQuery] Google map plugin idea

2006-09-21 Thread Dylan Verheul
On 9/21/06, Tim Gossett [EMAIL PROTECTED] wrote: You have a bug with your default Lat and Long values. I was lazy :-) thanks for the heads up, it's better now. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Google map plugin idea

2006-09-22 Thread Dylan Verheul
I don't think a casual HTML writer is going to use the geo microformat. It's small, but you have to write a lot of HTML to describe a very small piece of information. Maybe I'll give it a go though, since there's nothing better right now. Or I'll go with good old CSV. On 9/22/06, Fil [EMAIL

Re: [jQuery] Google map plugin idea

2006-09-22 Thread Dylan Verheul
You don't count as casual ;-) On 9/22/06, Klaus Hartl [EMAIL PROTECTED] wrote: Dylan Verheul schrieb: I don't think a casual HTML writer is going to use the geo microformat. It's small, but you have to write a lot of HTML to describe a very small piece of information. I do

Re: [jQuery] Google map plugin idea

2006-09-22 Thread Dylan Verheul
OK, no idea if this is what you'relooking for, but I added something: http://www.dyve.net/jquery?googlemaps The markers can now be provided in geo microformat. I don't usually do much XML processing (with or without jQuery), so my methods may be weird, but it seems to work. The old method (an

Re: [jQuery] Form plugin - move to core?

2006-09-24 Thread Dylan Verheul
On 9/24/06, Mike Alsup [EMAIL PROTECTED] wrote: I also wonder if its 3 methods should just be added to core. I think this would be a good idea. People to know Prototype (and perhpas other frameworks) expect form functionality. As Mike said, core is lacking in some features that form does very

Re: [jQuery] Widget Challenge

2006-09-27 Thread Dylan Verheul
Feel free to include what's on http://www.dyve.net/jquery (autocomplete, autohelp, googlemaps, editable). On 9/27/06, Yehuda Katz [EMAIL PROTECTED] wrote: Dojo released a new widget today: a spreadsheet widget. and it ocurred to me that while we don't quite have anything like that yet, there

Re: [jQuery] Redirect

2006-09-29 Thread Dylan Verheul
You dont need jQuery for that. location.href = http://www.jquery.com;; or Google for javascript redirect if you also want to handle (i)frames and such. On 9/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: How can I redirect to another page with jQuery? ___

Re: [jQuery] Autocomplete Plugin: iframe visible in IE6.

2006-10-04 Thread Dylan Verheul
I've had the same experience writing it. You can set the width of the iframe to the width of the autocomplete results, that prevents horizontal scrollbars. Other than that, I haven't had any problems. Maybe the recent bgiframe extension might be of help? Dylan On 10/4/06, Jason Huck [EMAIL

Re: [jQuery] jQuery Map solution

2006-10-06 Thread Dylan Verheul
The Google Map plugins does something like that with the geo microformat. http://www.dyve.net/jquery?googlemaps On 10/5/06, alfdesign.sk [EMAIL PROTECTED] wrote: Hi, I want to know, if anyone have any interactive map solution in jQuery, like this at

Re: [jQuery] Autocomplete Plugin: iframe visible in IE6.

2006-10-06 Thread Dylan Verheul
Thanks, that would have been it then. On 10/5/06, Jason Huck [EMAIL PROTECTED] wrote: FWIW, I killed the parts of the CSS that were hacks for IE5 support (we haven't supported IE5 in a while), and it seems to be fine now. - jason Dylan Verheul wrote: I've had the same experience

Re: [jQuery] Newbie: simple and own autocompletor

2006-10-15 Thread Dylan Verheul
There's also http://www.dyve.net/jquery?autocomplete Feel free to use it. On 10/15/06, stargate [EMAIL PROTECTED] wrote: Hello @ all, first i wanna thank you guys from jquery for the absolutly definitly amazing lib!!! I was looking for a simple autocompletor in the plugins section and

Re: [jQuery] Newbie: simple and own autocompletor

2006-10-16 Thread Dylan Verheul
, { inputClass:searchfield }); /script after loading the page, even the class i defined isnt applied to the inputbox...any hint ? also in the apache log i dont see any request to usersearch.cgi :( Greets, Ralf Dylan Verheul schrieb: Sorry, the link should be in the page but seems to be missing

Re: [jQuery] jQuery API discussion

2006-10-16 Thread Dylan Verheul
On 10/16/06, Sam Collett [EMAIL PROTECTED] wrote: Not too keen on namespacing (is it really required? will make the code more verbose and chaining could become confusing), Namespacing will break readability. Might as well make John put on some waterski's and find him a shark.

Re: [jQuery] Dylan Verheul's Autocomplete Mod...

2007-01-12 Thread Dylan Verheul
, Dylan On 1/12/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: I needed some modifications to the autocomplete library that Dylan Verheul released, and I wanted to share the modded library: http://www.pengoworks.com/workshop/jquery/autocomplete.htm Here are some of the things I fixed/changed

Re: [jQuery] Dylan Verheul's Autocomplete Mod...

2007-01-12 Thread Dylan Verheul
of the database. -Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dylan Verheul Sent: Friday, January 12, 2007 3:36 PM To: jQuery Discussion. Subject: Re: [jQuery] Dylan Verheul's Autocomplete Mod... I have't actually looked at the code, but it's

Re: [jQuery] Securing AJAX/PHP against direct calls?

2007-02-05 Thread Dylan Verheul
On 2/5/07, Arne-Kolja Bachstein [EMAIL PROTECTED] wrote: but is the referrer still correct when sending it via js? is the referrer the javascript file itself then or the web page it is accessing? You should really, really install Firebug. I know this sounds like an obnoxious remark that was

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-05 Thread Dylan Verheul
On 2/5/07, Andy Matthews [EMAIL PROTECTED] wrote: http://tinyurl.com/yubt54_spamlink Spam ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Dylan Verheul
On this page I've setup a test for the tabs plugin which I want to use. http://waarneming.nl/h/default/test The layout is wrong in FF2 (tabs are too high and too far to the right) and in IE7 (everything looks messed up). The scripts and the CSS are inserted through php calls in a small

Re: [jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Dylan Verheul
' styles from your css, and that got rid of the space between the tabs and the tab content. You may need to play with the margin values to get it to wrok the way you want. Regards, David Dylan Verheul wrote: On this page I've setup a test for the tabs plugin which I want to use. http

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Dylan Verheul
On 2/28/07, Klaus Hartl [EMAIL PROTECTED] wrote: Alexandre Plennevaux schrieb: as for feature, proportional dimensions is a must IMO. There is no sense fixing width and height of thickbox in today's multitude of screen sizes... What exactly do you mean by that. Currently if an image is too