[jQuery] Here is another nice plugin idea

2007-03-13 Thread Stephen Woodbridge
If anyone wanted an idea for a jQuery plugin to write http://www.scbr.com/docs/products/dhtmlxGrid/samples/1/index.html I think we have most if not all the infrastructure in existing plugins, but making it into a widget that you can easily drop on a page would be cool. -Steve

[jQuery] How do I get the XML of an ajax request?

2007-02-13 Thread Stephen Woodbridge
Hi all, How do I get the XML response of an ajax request? I want to put the XML text into a textarea and can do find this documented. $.get(/rgeo/, { x: document.rgeo.x.value, y: document.rgeo.y.value }, function(data){

Re: [jQuery] How do I get the XML of an ajax request?

2007-02-13 Thread Stephen Woodbridge
an xmlDocument that needs to be navigated with $(answer,data) or something like that! Hope that helps! On 2/13/07, Stephen Woodbridge [EMAIL PROTECTED] wrote: Hi all, How do I get the XML response of an ajax request? I want to put the XML text into a textarea and can do find this documented

[jQuery] Interesting plugin idea if anyone is interested for jquery

2007-02-02 Thread Stephen Woodbridge
http://www.solutoire.com/plotr ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Really Ugly?

2007-01-31 Thread Stephen Woodbridge
Karl Swedberg wrote: Hello my jQuery friends, I received a comment on learningjquery.com this evening from someone who had a grievance with part of some example code. I was wondering if any of you would be willing to shed some light on this for me. I think what he's getting at is the

[jQuery] SVN is Broken

2007-01-30 Thread Stephen Woodbridge
./dist/jquery.js Built Building ./dist/jquery.lite.js - Removing ScriptDoc from ./dist/jquery.js js: build/build/lite.js, line 1: Couldn't open file ../jquerybuild/js/writeFile.js. js: build/build/lite.js, line 6: uncaught JavaScript runtime exception: ReferenceError: writeFile is not

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
an image and the select list, this work with the anon function. I want to extract the named function so I can reuse it with the onchange event on #files to ask the user to save if the form is dirty. You can make the form dirty by clicking on the image. -Steve On 1/25/07, Stephen Woodbridge

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
for me, because my brain doesn't think this way yet. -Steve On 1/26/07, Stephen Woodbridge [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote: $(.button).bind( click, function(){ }); keeps everything associated with each individual button, throwing in a named function can easily hit some

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Michael Geary wrote: When you create a named function is is basically a static object stored in funcname of the scope it was defined in. when you declare a var in a function it is also a static object attached to the function object. As such mydata is a single static object and

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Michael Geary wrote: I appreciate the correction. I was a little dumb founded by the only explanation that I could come up with and decided over dinner that I should test it out an verify it. I probably should have done that before posting. All the good thoughts seem to come after hitting

[jQuery] I broke it - Why is it doing this?

2007-01-25 Thread Stephen Woodbridge
I have a bunch of buttons, and use the following to assign click events. $(.button).each( function() { var data = { check_dirty: 1 }; data.action = $(this).text().toLowerCase(); if (data.action == 'save') data.check_dirty = 0;

Re: [jQuery] I broke it - Why is it doing this?

2007-01-25 Thread Stephen Woodbridge
Stephen Woodbridge wrote: I have a bunch of buttons, and use the following to assign click events. $(.button).each( function() { var data = { check_dirty: 1 }; data.action = $(this).text().toLowerCase(); if (data.action

Re: [jQuery] image position question, take 2

2007-01-23 Thread Stephen Woodbridge
/) return this } and it works for any browser (especially firefox + firebug! $log(whatever) On 1/22/07, Stephen Woodbridge [EMAIL PROTECTED] wrote: Stephen Woodbridge wrote: Hi all, I know there has got to be an easy way to do thing but I'm having trouble figuring it out. I have a div

[jQuery] image position question

2007-01-22 Thread Stephen Woodbridge
Hi all, I know there has got to be an easy way to do thing but I'm having trouble figuring it out. I have a div that has an image in it and this image is positioned relative to the div based on what I want to look at and this works great so far. Now I want to overlay another transparent

Re: [jQuery] image position question, take 2

2007-01-22 Thread Stephen Woodbridge
Stephen Woodbridge wrote: Hi all, I know there has got to be an easy way to do thing but I'm having trouble figuring it out. I have a div that has an image in it and this image is positioned relative to the div based on what I want to look at and this works great so far. Now I want

Re: [jQuery] THE List of Sites Using jQuery

2007-01-16 Thread Stephen Woodbridge
Just tried it for the first time, and still has the DB error -Steve Rey Bango wrote: Yep, we're working on the Wiki. Fun, Fun! :o) Give it another go as the page came up for me. Rey... Erik Beeson wrote: Database error From jQuery JavaScript Library Jump to: navigation, search A

[jQuery] OT: Interesting Website Creation tool

2007-01-15 Thread Stephen Woodbridge
http://ajaxian.com/archives/weebly-online-website-creation-tool-using-ajax ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] SVN Broken???

2007-01-15 Thread Stephen Woodbridge
Hi, Just tried to update update svn got the following: svn: No repository found in 'svn://jquery.com' -Steve ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Strange error message

2007-01-15 Thread Stephen Woodbridge
Hi, I am getting a very strange error message: Node cannot be inserted at the specified point in the hierarchy code: 3 This is using jquery and the blockUI plugin. I assume it is because I'm doing something wrong, but the error message does not point to a line number or anything else. Any

Re: [jQuery] Strange error message

2007-01-15 Thread Stephen Woodbridge
Stephen Woodbridge wrote: Hi, I am getting a very strange error message: Node cannot be inserted at the specified point in the hierarchy code: 3 This is using jquery and the blockUI plugin. I assume it is because I'm doing something wrong, but the error message does not point

[jQuery] Using $.blockUI() to make modal dialog

2007-01-14 Thread Stephen Woodbridge
Hi all, I have been using $.blockUI with my ajax and image load events very successfully. Thanks this is a great tool. I need a modal dialog that ask if the user wants to save data or continue without saving. I created a div with two buttons the and click events on them to save or continue.

Re: [jQuery] Using $.blockUI() to make modal dialog

2007-01-14 Thread Stephen Woodbridge
Christopher Jordan wrote: Try the ThickBox plug-in. It's meant just for that sort of thing. :o) Cheers, Chris Stephen Woodbridge wrote: Hi all, I have been using $.blockUI with my ajax and image load events very successfully. Thanks this is a great tool. I need a modal dialog that ask

Re: [jQuery] Using $.blockUI() to make modal dialog

2007-01-14 Thread Stephen Woodbridge
Mike Alsup wrote: For example, reading through the code it is not obvious to me how the function $.blockUI() blocks continued execution of javascript ... It doesn't. All blockUI does it put an iframe over the window and capture/discard keystrokes. The idea is to block the user from using

Re: [jQuery] Using $.blockUI() to make modal dialog

2007-01-14 Thread Stephen Woodbridge
Mike Alsup wrote: Stephen, I put up a sample page that shows how to use blockUI to display a modal dialog. This may help give you some ideas. http://malsup.com/jquery/block/dialog.html Mike, Thanks! I'm sort of getting it. I think I need to reorganize my code to be less procedural and

Re: [jQuery] help speeding up code

2007-01-03 Thread Stephen Woodbridge
Seems to me that there were some posts a while back about code profiling maybe in firebug that would tell you how many calls you made to what functions and maybe how much time you spent in each function, maybe not this. But this would be the first step to optimizing your code. If you don't

Re: [jQuery] Create / access my own DOM element properties with jQuery?

2006-12-30 Thread Stephen Woodbridge
Oliver, Yes an example of what you are trying to do would be great. I have done a lot with my family genealogy and I currently display it using php to layout the pages. One of my future projects is to convert the genealogy application to use jQuery and ajax to build a web2 version of it.

Re: [jQuery] Fast way to remove duplicate array entries?

2006-12-20 Thread Stephen Woodbridge
Rich Manalang wrote: Anyone know of a fast way to remove dups in an array? The Perl way to do this is to convert the array entries into hash keys and then extract the keys back into an array. This is faster than searching the array and it should work with javascript. -Steve

Re: [jQuery] Fast way to remove duplicate array entries?

2006-12-20 Thread Stephen Woodbridge
Rich Manalang wrote: It is sorted, but it's an array of objects. Is there a way to hash an object? I guess a better question would be how do you determine object A is equal object B. Because if it is sorted, it would be much faster to walk the array and copy any element that is not the same

Re: [jQuery] More DOM Query Speed Tests

2006-12-19 Thread Stephen Woodbridge
OK, here is an interesting tidbit. I used the test below and and did the 7 click thing, and out of all my tests except one, the long delay happened in has() and once I got it in find(). has() is pretty simple and I wonder if this has less to do with the number of clicks versus the number of

Re: [jQuery] JQuery driven site

2006-12-19 Thread Stephen Woodbridge
Very nice. I tried (check all) and Sort by Most Downloaded then Search and got Bad Request (Invalid URL) FF2 on WinNT I like the nice style and use of effects. -Steve Stefan Holmberg wrote: fellows, Finally my first JQuery driven site has been released - http://www.findfreefonts.net .

Re: [jQuery] jquery session handling versus PHP

2006-12-19 Thread Stephen Woodbridge
Kim Johnson wrote: Currently I use PHP's built in session functions to handle ensuring users are logged in, etc. It doesn't work correctly a small percentage of the time, but is robust as far as being able to use the $_SESSION array and other such things. Now that I'm starting to use a bunch

Re: [jQuery] NEWS: Meet The People Behind jQuery

2006-12-18 Thread Stephen Woodbridge
Hey this is cool! Little did I know the John is also in Massachusetts! Hi John, I'm in North Chelmsford! Sometimes out there on the web is just around the corner! It is great to see all the work and effort that is going into jQuery and toward promoting it. Keep it up guys! Great work. -Steve

Re: [jQuery] Optimizing DOM Traversal

2006-12-17 Thread Stephen Woodbridge
www.englishrules.com http://www.englishrules.com www.learningjquery.com http://www.learningjquery.com On Dec 17, 2006, at 8:48 PM, Stephen Woodbridge wrote: I seem to remember seeing that post also and having done a lot of testing in other jobs it is easy to make

Re: [jQuery] Jobs and tasks at getJquery.org

2006-12-11 Thread Stephen Woodbridge
Hi, GetjQuery.org looks great, but it is missing the most important thing! It needs a prominent [GetjQuery] or [Download] link to get jQuery. The rest only matters after I can Get It :) Thanks for your efforts. Great start! -Steve digital spaghetti wrote: Hey folks, I'm pretty happy with

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-09 Thread Stephen Woodbridge
In spite of my suggestion for the tag line jQuery: puts the fun back in JavaScript! I think we should be very careful about be negative about JavaScript, after all it is the language we are working in. My line was meant more to reflect that fact the programming cross browser DOM stuff in

Re: [jQuery] input type checkbox

2006-12-07 Thread Stephen Woodbridge
Brandon, Dave, Thank you for the summaries. We have had a LOT of discussion about 1.1 over the last month+ and maybe it is time to create a wiki page the keeps a running list of decisions and issues. Links to bugs would be cool also. This would be really good for all. I would avoid rehashing

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Stephen Woodbridge
I kind of like: jQuery: puts the fun back in JavaScript! [huge snip] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Attention Please

2006-12-04 Thread Stephen Woodbridge
I think you will need to put together a simple? demo page that show the behavior you are describing. There is no way yo guess what might be going wrong. It might be a bug you are running into, it might be that you are not using something as intended, or any other number of things. -Steve

[jQuery] [OT] Firefox 2.0 Annoying Errors

2006-11-25 Thread Stephen Woodbridge
Hi all, I recently upgrade to Firefox 2.0 and I get the following annoying error message on basically every request. [Exception... Component is not available nsresult: 0x80040111 (NS_ERROR_NOT_AVAILABLE) location: JS frame ::

Re: [jQuery] [OT] Firefox 2.0 Annoying Errors

2006-11-25 Thread Stephen Woodbridge
Ⓙⓐⓚⓔ wrote: not jquery. I get a bunch of errors each time I start up ff 2... they don't recur. do yours? Yeah this error occurs with every page load of ajax transaction. It fills up firebug with errors. Very annoying. -Steve On 11/25/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: Hi all

Re: [jQuery] [OT] Firefox 2.0 Annoying Errors

2006-11-25 Thread Stephen Woodbridge
Michael Geary wrote: This has nothing to do with jQuery, but I'm hoping that some of you might have seen this and figured out how to make it go away. I have googled for it, but nothing helpful showed up. not jquery. I get a bunch of errors each time I start up ff 2... they don't recur.

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-17 Thread Stephen Woodbridge
Jörn Zaefferer wrote: jQuery documentation should clearly illustrate which base / core jQuery is required and dependencies should be illustrated in a clear manor. I think the php pear site exemplifies this, i think this is mostly covered but could be a touch clearer. PHP PEAR is a bad

Re: [jQuery] API docs draft 2

2006-11-16 Thread Stephen Woodbridge
Jörn Zaefferer wrote: Hi folks, it's update time, take a look for yourself: http://fuzz.bassistance.de/api-draft/cat.xml The position:fixed hack for IE is implemented, but still a little fuzzy. Good thing: The complete API is bookmarkable across browsers. So far it's tested on FF 1.5,

Re: [jQuery] jQuery support for namespace attributes

2006-11-15 Thread Stephen Woodbridge
Klaus Hartl wrote: Stephen Woodbridge schrieb: Jörn Zaefferer wrote: I understand the CSS selector and have read the other thread but a true namespace selection based on xpath syntax doesn't work. As for writing a plug-in, I believe the issue could be corrected with a change to a regular

Re: [jQuery] new jQuery API draft

2006-11-14 Thread Stephen Woodbridge
Jörn Zaefferer wrote: One suggestion, I really love in the php documentation: it should be possible to add user comments to every navigation point. I think, that such a feature is very helpful. It's true that the comments in the PHP documentation are very helpful. I wonder if it would be

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-14 Thread Stephen Woodbridge
I think that it would be great if we had a few bundled flavors like: jQuery-minimal.js jQuery-lite.js jQuery-standard.js jQuery-heavy.js This way we get the benefit of claiming all the features and can claim starting at only xx bytes based on the packed size of the minimal flavor. Providing a

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-14 Thread Stephen Woodbridge
demos, tutorials, and plugins use the lowest comon denominator of code (which will require a lot of rewriting). In all, it's very tricky, and something that we'll want to consider carefully. --John On 11/14/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: I think that it would be great

Re: [jQuery] Alternative tooltip, with shadows...

2006-11-13 Thread Stephen Woodbridge
Jörn Zaefferer wrote: Hey Rey! So I was planning on using Jorn's tooltip plugin, but my client nixed it saying that he wanted something that looked more like this: Not sure how difficult this would be but let me know if you get this done Andy as it would VERY cool. We already solved

[jQuery] OO programming is confusing to old functional programmers

2006-11-11 Thread Stephen Woodbridge
OK, How much of this is right? jQuery.Map = { // this is a public global attribute? // ie: global across all instances of jQuery.Map whatever : null, // a public function init : function(options) { // this is the jQuery search collection // self is

Re: [jQuery] OO programming is confusing to old functional programmers

2006-11-11 Thread Stephen Woodbridge
the mapping used in this: http://imaptools.com:8081/map/demo.html -Steve -Mike From: Stephen Woodbridge OK, How much of this is right? jQuery.Map = { // this is a public global attribute? // ie: global across all instances of jQuery.Map whatever : null, // a public function

Re: [jQuery] Overlib in combination with drag-n-drop from interface

2006-11-10 Thread Stephen Woodbridge
Barry Nauta wrote: Or perhaps there is a way to have (optional) sticky tooltips in jQuery? That is the reason why I use overlib On Friday 10 November 2006 11:07, Barry Nauta wrote: Has anyone used the overlib libraries in combination with interfaces' dnd libs? I have some rows in a

Re: [jQuery] Help: Trying to write my first plugin and its not trivial

2006-11-10 Thread Stephen Woodbridge
Jörn Zaefferer wrote: Stephen Woodbridge schrieb: Hi all, I'm trying to write my first plugin and I'm having some conceptual problems on how to organize stuff and getting my head wrapped around this. The plugin will be for turning a div into an interactive mapping application. Just

Re: [jQuery] new jQuery API draft

2006-11-10 Thread Stephen Woodbridge
Jörn, Very nice! and oh so close to what I want. Can you add a print link that will render the right panel only for printing? It would be nice it it could be printed in either aphabetical or catagory order. Please, please, please! Pretty please! -Steve Jörn Zaefferer wrote: Hi jQueryians,

Re: [jQuery] conflict between jtip and thickbox

2006-11-09 Thread Stephen Woodbridge
Olivier Percebois-Garve wrote: Hi I'm trying to implement jtip on a page where I have already implemented the thickbox, both on a elements. Apparently the saveTitle function is not being called. Any thoughts ? In javascript I really miss not to have a print_r() function to debug.

Re: [jQuery] does jQuery has support for parameter handling ?

2006-11-09 Thread Stephen Woodbridge
Does decodeURIComponent() support character encoding character sequences? %F6 looks like an accented character, if you remove this does it work? That might give you a clue to the problem or what to search for. -Steve Truppe Steven wrote: Mark Gibson schrieb: Javascript has the functions:

[jQuery] Help: Trying to write my first plugin and its not trivial

2006-11-09 Thread Stephen Woodbridge
Hi all, I'm trying to write my first plugin and I'm having some conceptual problems on how to organize stuff and getting my head wrapped around this. The plugin will be for turning a div into an interactive mapping application. So, I will start with something like this:

Re: [jQuery] New Plugin: Resizeable

2006-11-08 Thread Stephen Woodbridge
Mark Gibson wrote: Stephen Woodbridge wrote: Mark Gibson wrote: I've not had chance to test it, but I'm sure all elements have a resize event. If not then the resizeable plugin can trigger() it itself. Hi Mark, I tried to do this like this: $(document).ready(function

Re: [jQuery] New Plugin: Resizeable

2006-11-08 Thread Stephen Woodbridge
Stephen Woodbridge wrote: Mark Gibson wrote: Stephen Woodbridge wrote: Mark Gibson wrote: I've not had chance to test it, but I'm sure all elements have a resize event. If not then the resizeable plugin can trigger() it itself. Hi Mark, I tried to do this like this: $(document).ready

Re: [jQuery] $.get - Retrieving XML Docs

2006-11-08 Thread Stephen Woodbridge
Richard, This sounds like bug 164, which has been recently fixed in svn. -Steve Richard Walker wrote: Hi, I'm trying to use the $.get function to bring back a DOM Document which I can then manipulate with jQuery functions. In Firefox and Opera this works fine with a function call

Re: [jQuery] jquery incompatible with adsense?

2006-11-07 Thread Stephen Woodbridge
I think it breaks if you click on the image. -Steve Luke Lutman wrote: Hmmm... Your test page looks fine (no errors) in Firefox and Safari for me. Luke Mark D.B.D wrote: I upgraded first to revision 522 and after to 524 and both doesn´t work. I get the following error on thinkbox.js:

Re: [jQuery] New Plugin: Resizeable

2006-11-07 Thread Stephen Woodbridge
Mark Gibson wrote: Stephen Woodbridge wrote: Hi Stefan, I have been trying your resize plugin, it is really slick and works great! I have a request, does it already have or can you add the ability to added a call back at the end of the resize, so other code can be notified of the change

Re: [jQuery] New way of animating

2006-11-06 Thread Stephen Woodbridge
I can't speak to most of these issues, but I would like to point that for myself, learning works best by taking something that exists and rewriting it into jQuery. This allows me to not have to think about the existing application, but rather focus on get it working or getting it right in

Re: [jQuery] New way of animating

2006-11-06 Thread Stephen Woodbridge
I think the putting the sizzle in is not a problem for jQuery. The real problem is much more basic and the one we are faced designing an site. What do we want to say? What is the material we have to offer? How do we want to organize it and present it? What is the story board of the work flow for

Re: [jQuery] Is this possible?

2006-11-06 Thread Stephen Woodbridge
Chris, I haven't tried it but would $([EMAIL PROTECTED]'enabled']).click() -Steve W Christopher Jordan wrote: Hi folks, I have a table that represents a calendar. The user will be able to select multiple dates from the calendar, but cannot select dates in the past. I've written this

[jQuery] What is this?, I am so confused!!! or JavaScript Tutorial

2006-11-06 Thread Stephen Woodbridge
Well actually I am not that confused any more. Ok, maybe a little at times, but that is nothing new :) I recently found this site that someone here or elsewhere posted for learning JavaScript: http://javascript.crockford.com/private.html which explains closures, this and other stuff, and when

Re: [jQuery] Is this possible?

2006-11-06 Thread Stephen Woodbridge
Chris, I think you would need to test for performance differences unless John or one of the other guys with more clue have some insight. This works by creating a jquery collection of all td objects and using each to iterate through them, then uses the if to filter them.

[jQuery] Building a Community (was: Re: New way of animating

2006-11-06 Thread Stephen Woodbridge
Rey Bango wrote: Hi Dan, Still, I suppose if you make enough examples of everythin everyone else has done, and then throw jQuery's own killer features, then we might get more converts! :D There's plenty of cool stuff out there that we should push more and more. Yep! See, part of my

Re: [jQuery] New Plugin: Resizeable

2006-11-05 Thread Stephen Woodbridge
Hi Stefan, I have been trying your resize plugin, it is really slick and works great! I have a request, does it already have or can you add the ability to added a call back at the end of the resize, so other code can be notified of the change in size? Like notify below:

Re: [jQuery] New Plugin: Resizeable

2006-11-05 Thread Stephen Woodbridge
@@ { Resizeable : jQuery.iResize.build } -); \ No newline at end of file +); Stephen Woodbridge wrote: Hi Stefan, I have been trying your resize plugin, it is really slick and works great! I have a request, does it already have or can you add the ability to added a call

Re: [jQuery] New Plugin: Resizeable

2006-11-05 Thread Stephen Woodbridge
and position get set on start but not on stop, so something a little smarter is required. I guess I'll need to poke at it some more. -Steve Stephen Woodbridge wrote: Hi Stefan, I took a shot at adding the notify to your iresizeable.js and it seems to work for my limited testing. Here

Re: [jQuery] New Plugin: Resizeable

2006-11-05 Thread Stephen Woodbridge
; +} } ); } @@ -216,4 +229,4 @@ { Resizeable : jQuery.iResize.build } -); \ No newline at end of file +); Stephen Woodbridge wrote: OK, this is not quite right yet. In side the notify function this.sizes

Re: [jQuery] [Fwd: jquery bug 164]

2006-11-04 Thread Stephen Woodbridge
Brandon, If I recall correctly, I think the version that I had that worked was marked r29. I'm not sure what that reflected, but I'm kicking myself for deleting it, when I upgraded. -Steve Brandon Aaron wrote: Since the move to /trunk I'm only able to go back to Rev 482. Is it just my SVN

Re: [jQuery] [Fwd: jquery bug 164]

2006-11-04 Thread Stephen Woodbridge
Dave, Thank you for looking into this. I just set up a test case that fails roughly using your test case as a model. I tested it based on todays svn and it fails in IE6. Can you test it against the older versions. http://imaptools.com:8081/test/jquery-xml-bug.html

Re: [jQuery] [Fwd: jquery bug 164]

2006-11-04 Thread Stephen Woodbridge
Dave, It just dawned on me I could pull the js from you site: http://imaptools.com:8081/test/jquery-xml-bug2.html?413 http://imaptools.com:8081/test/jquery-xml-bug2.html?501 And both of these fail in IE6. -Steve Stephen Woodbridge wrote: Dave, Thank you for looking into this. I just

Re: [jQuery] [Fwd: jquery bug 164] (fix?)

2006-11-04 Thread Stephen Woodbridge
Dave, You are Awesome! this fixes the problem in IE6. http://imaptools.com:8081/maps/demo2.html double click the map and now you can toggle between the xml and formated html under the map. Many many thanks! -Steve *happy* *happy* *smiling* *smiling* Dave Methvin wrote: Okay, this version

Re: [jQuery] xml in Browser after ajax

2006-11-04 Thread Stephen Woodbridge
Olaf Bosch wrote: Jörn Zaefferer schrieb: How I can let the grabbeing xml in browser explain? With the .html give me *[object XMLDocument]* If you need html, tell $.ajax to get it for you: $.ajax({ ... dataType: html, sucess: function(html) {

Re: [jQuery] maps (was: xml in Browser after ajax

2006-11-04 Thread Stephen Woodbridge
Ⓙⓐⓚⓔ wrote: Damn nice tool! On 11/4/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: Ooh! I know! Did this! look at: http://imaptools.com:8081/maps/demo2.html double click the map to get xml displayed under the map, click toggle to see it as formated html. Check my script, you welcome

[jQuery] [Fwd: jquery bug 164]

2006-11-03 Thread Stephen Woodbridge
Clem, As far as I know this is still an open issue. I am hoping the one of the developers that has some expertise in IE will take pity on us and try to fix this bug sooner rather than later ;). This was not a problem pre 1.0.0, but I'm sure a lot of code has change since then which has

Re: [jQuery] [Fwd: jquery bug 164]

2006-11-03 Thread Stephen Woodbridge
Dave Methvin wrote: I'd would like to know if possible what is the status on the bug 164 in jquery. As far as I know this is still an open issue. I am hoping the one of the developers that has some expertise in IE will take pity on us and try to fix this bug sooner rather than later ;).

Re: [jQuery] xml in Browser after ajax

2006-11-03 Thread Stephen Woodbridge
I barely know this stuff, but would something like this work: $(#el1).html($(for-el1, xml).text()); $(#el2).html($(for-el2, xml).text()); $(#el3).html($(for-el3, xml).text()); or if you have a lot of elements, then making an array of them and looping through the list might be cleaner. It

Re: [jQuery] jQuery 1.0.3 compressed - file header missing

2006-11-02 Thread Stephen Woodbridge
Laurent Yaish wrote: The packed version of jQuery 1.0.3 is missing the file header, 1.0.2 had it. I know it makes the file slightly smaller but then there is no way to know what version you're using. Actually, it would be nice if jQuery had a var or function like: $.version or $.version()

Re: [jQuery] jQuery Metadata Plugin

2006-11-01 Thread Stephen Woodbridge
Or just adding an xml data island to your document that has everything you want it it and then parsing that using xpath. This is approach is much cleaner, should validate, and we already have the tools to parse it. -Steve W. Erik Beeson wrote: In the case of adding metedata to divs, are

Re: [jQuery] jQuery Metadata Plugin

2006-11-01 Thread Stephen Woodbridge
but it won't validate unless you do the dtd for it too. On 11/1/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: Or just adding an xml data island to your document that has everything you want it it and then parsing that using xpath. This is approach is much cleaner, should validate, and we already

Re: [jQuery] json.js

2006-10-30 Thread Stephen Woodbridge
Jörn Zaefferer wrote: When I introcuded json.js [http://json.org/json.js] from http://json.org/ . Problem now is my browser keeps freezing and eating up CPU. I checked and it is clearly conflicting with JQuery. It extends Object, which seemes to cause lots of trouble with jQuery. You

Re: [jQuery] moddify the title tag

2006-10-30 Thread Stephen Woodbridge
Mike Alsup wrote: You get only one chance at this - you can't change it once the tag is written. You can do this in FF and IE: document.title = 'my new title'; I could not get this to work via the url which might not be significant: javascript:document.title='my new title' but this

[jQuery] today's svn test report

2006-10-28 Thread Stephen Woodbridge
Hi all, I just got tools loaded to be able to run svn make and set up my system for running tests. Test results for todays svn follow: -Steve Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 $.find() (2, 93, 95) 69. Sibling Axis (//p/../) expected:

Re: [jQuery] Visual jQuery Announcement

2006-10-28 Thread Stephen Woodbridge
Yehuda, Please add to your Future list to provide a printable version of the documentation like a single html page or pdf document that is linear so it prints on letter sized paper. This is really a great resource. Kudos for all your effort! Thanks, -Steve Yehuda Katz wrote: I've moved

Re: [jQuery] today's svn test report

2006-10-28 Thread Stephen Woodbridge
in 5640 milliseconds. 3 tests of 291 failed. Stephen Woodbridge wrote: Hi all, I just got tools loaded to be able to run svn make and set up my system for running tests. Test results for todays svn follow: -Steve Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.7) Gecko

Re: [jQuery] Oooh! These are pretty!

2006-10-27 Thread Stephen Woodbridge
that sessions would be able to be saved by writing a cookie with the location of various elements. or add save/load function that read/writes an xml document somewhere. -Steve Stephen Woodbridge wrote: Anyone up to porting some of this to jQuery? http://archive.dojotoolkit.org/nightly/demos/gfx

Re: [jQuery] Oooh! These are pretty!

2006-10-27 Thread Stephen Woodbridge
).hide(); or // add two circles (nested), then hide both of them $(#container).addShape(redcircle); $(#circle01).addShape(bluecircle); $(#circle01).hide(); Anyway you get the idea. -Steve Sam Collett wrote: On 27/10/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: snip Since a lot of what I do

Re: [jQuery] xml / javascript help requested

2006-10-27 Thread Stephen Woodbridge
Hi Sean, look at http://imaptools.com:8081/maps/demo.html and double click on the map, then click the toggle button under the map. This is currently broken on IE, because of http://jquery.com/dev/bugs/bug/164/ (Which I hope gets FIXED soon, please!) You want to use xpath to extract values

Re: [jQuery] Oooh! These are pretty!

2006-10-27 Thread Stephen Woodbridge
Dave Methvin wrote: Hmmm, I just checked all these links in IE 6.0.2800.1106 and they all work fine for me. So I'm wondering what version you are using? And why it works for me and not you? I've got the latest IE6 for XP SP2, which is 6.0.2900.2180. This page gives me one of those

Re: [jQuery] xml / javascript help requested

2006-10-27 Thread Stephen Woodbridge
Jörn Zaefferer wrote: Dave Methvin schrieb: look at http://imaptools.com:8081/maps/demo.html and double click on the map, then click the toggle button under the map. This is currently broken on IE, because of http://jquery.com/dev/bugs/bug/164/ (Which I hope gets FIXED soon, please!)

[jQuery] Oooh! These are pretty!

2006-10-26 Thread Stephen Woodbridge
Anyone up to porting some of this to jQuery? http://archive.dojotoolkit.org/nightly/demos/gfx/circles.html http://archive.dojotoolkit.org/nightly/demos/gfx/clock.html http://www.mxgraph.com/demo/mxgraph-web/web/mxWorkflow-Demo.html -Steve ___ jQuery

Re: [jQuery] [Off-list] Re: Is svn broken or having problems?

2006-10-23 Thread Stephen Woodbridge
/23/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: Hi all, Just tried to do: $ svn update svn: Can't find a temporary directory I googled for this and found a hint it my be the repository. I check that I do have /tmp and it is not full and it is writable. -Steve

[jQuery] Is svn broken or having problems?

2006-10-22 Thread Stephen Woodbridge
Hi all, Just tried to do: $ svn update svn: Can't find a temporary directory I googled for this and found a hint it my be the repository. I check that I do have /tmp and it is not full and it is writable. -Steve ___ jQuery mailing list

Re: [jQuery] method/plugin for getting query string vars?

2006-10-21 Thread Stephen Woodbridge
Hi Jörn, I seem to be missing something (so much to learn!). Your note creates an anonymous function that assigns its result to jQuery.query, but where does the function get attached and how does it get invoked, like in Luke's example. Thanks, -Steve Jörn Zaefferer wrote: Luke Lutman

Re: [jQuery] Sorting (not tables)

2006-10-19 Thread Stephen Woodbridge
Ok, I am just not worthy! sigh Somebody please walk me through how this plugin works. -Steve John Resig wrote: Hi Erik - With your particular example, give this plugin a try: jQuery.fn.sort = function() { return this.pushStack( [].sort.apply( this, arguments ), []); }; We've been

Re: [jQuery] Sorting (not tables)

2006-10-19 Thread Stephen Woodbridge
).sort(function(a,b){ return a.innerHTML b.innerHTML ? 1 : -1; }).remove().appendTo(#itemlist); Hope this helps. --John On 10/19/06, Stephen Woodbridge [EMAIL PROTECTED] wrote: Ok, I am just not worthy! sigh Somebody please walk me through how this plugin works. -Steve John Resig

Re: [jQuery] New Cheat Sheets in WIP, feedback , what you want to see

2006-10-15 Thread Stephen Woodbridge
Klaus Hartl wrote: Stephen Woodbridge schrieb: 2. it looks like you have a typo on all of the {on}event you have {one}event, also you have ununload(fn) is this correct (i'm not familiar with the interface plugin?) Stephen, that is no typo, that is jQuery's superuseful feature to have

  1   2   >