Re: [jQuery] Any regular expression gurus here?

2007-03-28 Thread Daemach
I'll look into it. I've been using Expresso to develop the regex - that is pretty handy too. (http://www.ultrapico.com/Expresso.htm) On 3/28/07, Nathan Young -X (natyoung - Artizen at Cisco) [EMAIL PROTECTED] wrote: Hey. Check out regex coach. It's a debugging tool that let's you run your

Re: [jQuery] Need more taconite help... Mike... Daemach... someone?

2007-03-28 Thread Daemach
What Klaus said ;) http://www.malsup.com/jquery/taconite/#debugging On 3/28/07, Christopher Jordan [EMAIL PROTECTED] wrote: Ah ha! We'll see if that works... I'm by no means an XML guru... thanks for the tip. I'll let you know if it works. Chris Klaus Hartl wrote: Christopher Jordan

Re: [jQuery] Taconite question...

2007-03-26 Thread Daemach
The one gotcha I've run into is with the disabled attribute - setting disabled=false doesn't do anything. You have to remove the attribute entirely using (wait for it...) removeAttr() to re-enable a disabled form field. On 3/26/07, Mike Alsup [EMAIL PROTECTED] wrote: Rick, Anything you can

Re: [jQuery] Taconite question...

2007-03-26 Thread Daemach
attr select=#HiddenStatusFieldID name=value value=true) On 3/26/07, Christopher Jordan [EMAIL PROTECTED] wrote: Mike, I'm working on this problem with Rick, and I've never used taconite before. The idea is that we've got three hidden form fields on the calling page which are associated with

Re: [jQuery] Any regular expression gurus here?

2007-03-26 Thread Daemach
Thanks much. On 3/26/07, Jake McGraw [EMAIL PROTECTED] wrote: To quote Mastering Regular Expressions 3rd Ed. by J. Friedl: The real problem is that on the majority of systems, you simply can't match arbitrarily nested constructs with regular expressions. He goes on to give the syntax for

Re: [jQuery] Taconite Plug-in Question...

2007-03-25 Thread Daemach
bleh - cfelseif not /cfelseif On 3/25/07, Daemach [EMAIL PROTECTED] wrote: One way around this is by sending a separate form field that you can use to trigger a cfswitch or cfif block that processes the fields differently. In other words, if you added a field called Action, on your

Re: [jQuery] Taconite Plug-in Question...

2007-03-25 Thread Daemach
PROTECTED] *On Behalf Of *Daemach *Sent:* Sunday, March 25, 2007 3:28 PM *To:* jQuery Discussion *Subject:* Re: [jQuery] Taconite Plug-in Question... bleh - cfelseif not /cfelseif On 3/25/07, *Daemach* [EMAIL PROTECTED] wrote: One way around this is by sending a separate form field that you

Re: [jQuery] Taconite Plug-in Question...

2007-03-25 Thread Daemach
Not just Rey's ;) On 3/25/07, Mike Alsup [EMAIL PROTECTED] wrote: Nope. I work mostly in Java (JSP) and PHP. And didn't I hear that CF was being discontinued? Ha, just kidding - just trying to get Rey's blood pressure up. :-) Hey, Mike... Do you use CF? Rick

[jQuery] Gurus - best Javascript references?

2007-03-23 Thread Daemach
I have no formal programming training, so I often brute-force things that could be a lot more elegant. One thing I'm struggling with in particular now is the benefits of creating object prototypes over just storing data in a global tree. A few people on this list have taken a shot at explaining

Re: [jQuery] Gurus - best Javascript references?

2007-03-23 Thread Daemach
.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.: ||:. Nathan Young Cisco.com-Interface Development A: ncy1717 E: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: Friday, March 23, 2007 10:16 AM To: jQuery Discussion. Subject: [jQuery

Re: [jQuery] Gurus - best Javascript references?

2007-03-23 Thread Daemach
I just ordered it myself along with Flanagan's book. On 3/23/07, Klaus Hartl [EMAIL PROTECTED] wrote: Daemach schrieb: I have no formal programming training, so I often brute-force things that could be a lot more elegant. One thing I'm struggling with in particular now is the benefits

Re: [jQuery] Jquery can learn from Mootools for distribution its code

2007-03-23 Thread Daemach
I had some thoughts along this line too. I got hung up on dependencies. If there was a central plugin library and a standardized method for setting version numbers and such, an auto- updating mechanism would be really handy. I was thinking more along the lines of an apollo or win32 front-end

Re: [jQuery] Gurus - best Javascript references?

2007-03-23 Thread Daemach
? On 3/23/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Daemach schrieb: I have no formal programming training, so I often brute-force things that could be a lot more elegant. One thing I'm struggling with in particular now is the benefits of creating object prototypes over just storing data

Re: [jQuery] Javascript dump, ala Coldfusion's CFDUMP

2007-03-22 Thread Daemach
I wrote the jquery plugin and fixed a few bugs but credit for the original dump() goes to Shawn at Netgrow. On Mar 22, 10:50 am, Michael E. Carluen [EMAIL PROTECTED] wrote: To whoever is responsible for it, if you're on the list, please claim your kudos for a job well done. Thanks!!.. its

Re: [jQuery] How can I find out if a style class exists?

2007-03-19 Thread Daemach
Yeah, I gave up on dealing with stylesheets at all and added a method to pass a CSS string to override such as: {color:ff,etc} On 3/19/07, Nathan Young -X (natyoung - Artizen at Cisco) [EMAIL PROTECTED] wrote: Hi. if (ElementInQuestion.style.fontSize == 13px){whatever} That will

Re: [jQuery] Can't figure out how to put this all together...

2007-03-17 Thread Daemach
I think John is brilliant - a bona fide genius. In fact, he's me! In another forum I participate in there are 2 other John Wilsons, so I started using Daemach instead. Now it's habit. I do think taconite is a great bridge for beginning coders - it has all the power of jQuery because it's

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-17 Thread Daemach
Great work Chris - For those of you who aren't familiar with the CF functions, they are very helpful real-world functions. A fantastic reference site for many different code APIs can be found here: http://gotapi.com/ For Cold Fusion, look under Macromedia. Try looking under functions for

Re: [jQuery] json deserialization

2007-03-17 Thread Daemach
Why can't you $.post(myurl.cfm,data,function(response){ eval(response)})? If you're certain the response is a valid json string, eval turns it back into a javascript object/array/whatever. On 3/16/07, Bojan [EMAIL PROTECTED] wrote: Hello everyone, I am trying to figure out how to deserialize

Re: [jQuery] Can't figure out how to put this all together...

2007-03-16 Thread Daemach
Looks like it works - is it making more sense now? On 3/16/07, Rick Faircloth [EMAIL PROTECTED] wrote: Oh, and I meant to give you the online demo… http://bodaford.whitestonemedia.com/html/calctest.cfm Rick *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *John

[jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
I'm working on something that I want a user to be able to override by including a specific class somewhere in the CSS definitions. If that class doesn't exist I want to add a default style. This seems like something that should have come up before but search isn't coming up with anything. Can

Re: [jQuery] jquery inside a loop... need suggestions to improve code

2007-03-16 Thread Daemach
Try this: cfoutput query=myQuery a class=tooltip id=aid_#myQuery.id# href=somepage.cfm ?to=#myquery.id##myQuery.text#/a img id=imgid_#myQuery.id# src=/thumbnails/#myQuery.image# / /cfloop script type=text/javascript $(document).ready(function(){ $(img.tooltip).hide();

Re: [jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
Yes that makes sense, and it's why I need to find out if a class exists in the stylesheet before I apply the style. On 3/16/07, Nathan Young -X (natyoung - Artizen at Cisco) [EMAIL PROTECTED] wrote: Hi. IOW given the following: style #myDiv {background: blue;} /style div id=myDiv

Re: [jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
figure this out. $('div id=ajaxCFCLoadingIndicator/div').css(css).appendTo(ind[2]).hide(); On 3/16/07, rolfsf [EMAIL PROTECTED] wrote: if it's a class you're looking for, I think you can use something like if( $('#myDiv').is('.className')) {...} Daemach wrote: I'm working on something

Re: [jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
you can use something like if( $('#myDiv').is('.className')) {...} Daemach wrote: I'm working on something that I want a user to be able to override by including a specific class somewhere in the CSS definitions. If that class doesn't exist I want to add a default style. This seems like

Re: [jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
div id=myDiv/div will have background-color: white; div id=myDiv class=myClass/div will have background-color: red; div id=myDiv class=myClass style=background-color: blue;/div will have a class=myClass, but background-color: blue; Daemach wrote: I just tested this. When defining a style

Re: [jQuery] jquery inside a loop... need suggestions to improvecode

2007-03-16 Thread Daemach
Yes, sorry - I was on the phone when I wrote that ;) The class is just a fast way to select a bunch of elements that you want to apply common behavior to. You can call it anything you want. On 3/16/07, Michael E. Carluen [EMAIL PROTECTED] wrote: Thanks Daemach. Looking at the scripts, I'm

Re: [jQuery] How can I find out if a style class exists?

2007-03-16 Thread Daemach
. Daemach wrote: Hmm - in theory this could work if the style was applied immediately. I guess the question is, if I'm creating this element dynamically when does the css style get applied so I can check it? I'm doing the following at the moment, but I plan on moving the .css definition

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-15 Thread Daemach
().append(data); } In general you should avoid creating outside functions inside the document.ready function for cleanliness if nothing else. Rick Faircloth wrote: Hi, Daemach... I've been working with the various suggestions I've gotten and have made some progress. I had to spend most

Re: [jQuery] *New jQuery plugin* - autoSave

2007-03-15 Thread Daemach
I just did Sam, thank you. Sam Collett wrote: On 15/03/07, Daemach [EMAIL PROTECTED] wrote: To try and master jQuery I've been playing with a few ideas. I decided to flesh this one out for use on one of my sites and in hopes it can benefit someone else as well I'm making it available

Re: [jQuery] *New jQuery plugin* - autoSave

2007-03-15 Thread Daemach
It's possible - I need to give it some thought. For the moment, though, you can select all inputs inside a given form like this: $(:input,#yourformid).autoSave(function); Jake McGraw wrote: Any way we could get this attached to whole form elements? Something like: $(form).autoSave()?

Re: [jQuery] *New jQuery plugin* - autoSave

2007-03-15 Thread Daemach
You can look here for a live demo until I can get something better on my blog: http://beta.missionincrease.org/jQuery/autosave_example.cfm matt2012 wrote: this looks great a few working examples would really be appreciated Matt. -- View this message in context:

Re: [jQuery] window.undefined = undefinedundefined?

2007-03-15 Thread Daemach
Thanks - that makes sense. I was viewing it in firebug. It actually did say just undefined until I clicked on the value and it opened to an editable string that said undefinedundefined. Might be a firebug...bug. Michael Geary wrote: I was poking around the DOM looking for incorrectly

Re: [jQuery] web services/api - jscript invocation

2007-03-15 Thread Daemach
Do you have access to ColdFusion as a backend? If so, there is already a jquery/javascript framework called ajaxCFC that handles the heavy lifting for you. You can pass data and complex objects back and forth with ease. You also mentioned a separate web app - keep in mind that you can only

Re: [jQuery] jQuery Powered Sites - The List Continues to Grow

2007-03-15 Thread Daemach
This would be easier to install if there was a direct link to the script somewhere :) Even better if Greasemonkey could check the clipboard... Rey Bango-2 wrote: Hi all, I've added www.sheriff.org, marmot.com http://www.novita.org.au to the list. Keep the sites coming. Also, if

Re: [jQuery] jQuery Powered Sites - The List Continues to Grow

2007-03-15 Thread Daemach
to jump though hoops :) Rey Bango-2 wrote: Quit being a lazy bone and cut paste!!! ;o) Rey... Daemach wrote: This would be easier to install if there was a direct link to the script somewhere :) Even better if Greasemonkey could check the clipboard... Rey Bango-2 wrote: Hi all

Re: [jQuery] jQuery Powered Sites - The List Continues to Grow

2007-03-15 Thread Daemach
. I tried opening the file as you said but that only gave me the option of saving it. What am I doing wrong? Gerry - Original Message - From: Daemach [EMAIL PROTECTED] To: discuss@jquery.com Sent: Thursday, March 15, 2007 7:36 PM Subject: Re: [jQuery] jQuery Powered Sites

Re: [jQuery] .load and page reloading twice

2007-03-15 Thread Daemach
Do you by any chance have elements with the sameID? If you are using firebug, try going to the console and pasting in that selector - $('div#mypage') - if it returns an array with more than 1 element, there's your problem. You can mouse over the array elements and firebug will highlight the

[jQuery] Animation question

2007-03-15 Thread Daemach
I'm working with the fade and slide animations now, and while testing I've hit a couple of points where an element tried to slideIn when it was already ... in, and fadeOut when it was already...out. In both cases the animation starts from the beginning, fully hiding the element and sliding it in

Re: [jQuery] .load and page reloading twice

2007-03-15 Thread Daemach
instance found. Thanks for the suggestion. Daemach wrote: Do you by any chance have elements with the sameID? If you are using firebug, try going to the console and pasting in that selector - $('div#mypage') - if it returns an array with more than 1 element, there's your problem. You can

Re: [jQuery] *New jQuery plugin* - autoSave

2007-03-15 Thread Daemach
and a create date over x days ago. Rick Faircloth wrote: Very clever, Daemach! Now, besides saving info on the fly, and preserving info from a session, what other practical benefits do you see for this? And what if a session were abandoned? What happens with the data? Does it remain

Re: [jQuery] Animation question

2007-03-15 Thread Daemach
[EMAIL PROTECTED] wrote: Could you create a ticket for this? Otherwise it's just going to get lost. http://dev.jquery.com/ --John On 3/15/07, Daemach [EMAIL PROTECTED] wrote: I'm working with the fade and slide animations now, and while testing I've hit a couple of points where

Re: [jQuery] Animation question

2007-03-15 Thread Daemach
Perfect - if you could just add the same fitering to slideIn, slideOut, fadeIn and fadeOut we're there. I'm glad there is a precedent. Jörn Zaefferer wrote: Daemach schrieb: Hmm - I'm not sure how or why someone would rely on a hidden element appearing instantaneously and then animating

Re: [jQuery] Animation question

2007-03-15 Thread Daemach
What a simple and elegant solution ;) I do hope this will be addressed still to make the library work more intuitively but this saves me from doing an if statement. I love this list... David-310 wrote: Hi Daemach, I came across the same problem and agree that it is counter-intuitive

Re: [jQuery] Why is this not working in JQuery? (Array.indexOf)

2007-03-15 Thread Daemach
There's no reason you can't include some prototype extensions where you need them - not the library, just discrete functions. Put this in a script file: //returns -1 if not found if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(val, fromIndex) { if

[jQuery] Test

2007-03-15 Thread Daemach
Disregard this, please. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-14 Thread Daemach
){ $(#Result).empty().append(data); }) } Since, in this example, you don't have 2 post functions trying to call the same result, it is ok to encapsulate everything in one line. Rick Faircloth wrote: Thanks for the advice on Firebug and the debug code, Daemach. I've been using it for a few

Re: [jQuery] Local XML

2007-03-14 Thread Daemach
You might find some clues here - this is taken from Mike Alsup's most excellent taconite plugin (http://www.malsup.com/jquery/taconite/): if (typeof xml == 'string') xml = $.taconite.convert(xml); // convert string to xml document $.taconite.convert = function(s) { var doc;

Re: [jQuery] serialize form

2007-03-14 Thread Daemach
I wrote an autosave plugin a while back that automates autosaving fields. It doesn't submit the form at one time - instead it updates each field immediately if they are changed. I can find somewhere to post it if you want to play with it. It gets called like the snippet below - I use ajaxCFC

Re: [jQuery] Need help with filter, please.

2007-03-14 Thread Daemach
Hmm - that does bring up a point tho... aren't ID's supposed to be unique even in checkboxes? May need to use the name attribute instead... Daemach wrote: I usually use filter with a selector, but a function should work. Can you not do the following instead tho? $(radio:[EMAIL

Re: [jQuery] Need help with filter, please.

2007-03-14 Thread Daemach
I usually use filter with a selector, but a function should work. Can you not do the following instead tho? $(radio:[EMAIL PROTECTED] + id + ]) Christopher Jordan wrote: Hi folks, I've tried to use the filter function in the past, but have never been successful. Usually, I just

Re: [jQuery] Need help with filter, please.

2007-03-14 Thread Daemach
with an _1 belong to select_1. See? Chris ps. still haven't tried your suggestion. Just saw this post and thought I'd respond real quick. :o) Daemach wrote: Hmm - that does bring up a point tho... aren't ID's supposed to be unique even in checkboxes? May need to use the name attribute

Re: [jQuery] Need help with filter, please.

2007-03-14 Thread Daemach
between these elements. I'm pretty sure there isn't a parent child relationship between them. :o( Chris Daemach wrote: I understand, but in your radio selector you're using [EMAIL PROTECTED] which means begins with an underscore In this case I think you want [EMAIL PROTECTED

Re: [jQuery] Need help with filter, please.

2007-03-14 Thread Daemach
. Oh well. Thanks for tryin' to help me there Daemach. :o) Cheers, Chris Daemach wrote: I understand, but in your radio selector you're using [EMAIL PROTECTED] which means begins with an underscore In this case I think you want [EMAIL PROTECTED] which means contains an underscore

[jQuery] window.undefined = undefinedundefined?

2007-03-14 Thread Daemach
I was poking around the DOM looking for incorrectly scoped variables and I found the following node: window.undefined = undefinedundefined What is this for? -- View this message in context: http://www.nabble.com/window.undefined-%3D-%22undefinedundefined%22--tf3405952.html#a9487226 Sent from

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-14 Thread Daemach
Did you get this working Rick? Rick Faircloth wrote: Thanks for the advice on Firebug and the debug code, Daemach. I've been using it for a few days, but haven't learned it well. It has been good about notifying me of syntax errors, however! Rick -Original Message- From

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-13 Thread Daemach
It looks great - the only thing I would add is that the plugin roll up the menu when you mouse over a menu item that doesn't have a dropdown attached. On your site for example moving from consumer info to glasshouse works smoothly, but the menu doesn't disappear for a few seconds if you move

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-13 Thread Daemach
seconds if you move from glasshouse to city of gurya (in ff2) Daemach, I think Joel did that on purpose, to allow for mousing errors. There is a 400 ms onmouseout delay (adjustable) whether mousing onto another menu item, or just anywhere out of the dropdown. -- Josh - Original

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-13 Thread Daemach
What does the !! do? Dan G. Switzer, II wrote: Please add: StructKeyExists: function(s,k){ for(var n in s){ if (n == k) return true; } return false; }, Shall we post additions and updates here? This would be

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-13 Thread Daemach
On 3/14/07, Daemach [EMAIL PROTECTED] wrote: What does the !! do? Dan G. Switzer, II wrote: Please add: StructKeyExists: function(s,k){ for(var n in s){ if (n == k) return true; } return false

[jQuery] Append bug?

2007-03-13 Thread Daemach
I'm not having any luck with the following 2 commands - is this a bug or something I'm missing? I've tried with colgroup / as well. $(#myTable).append(colgroup/colgroup); $(colgroup/colgroup).appendTo(#myTable); -- View this message in context:

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-13 Thread Daemach
); } /script Hope this helps... Rick Faircloth wrote: Thanks for the advice on Firebug and the debug code, Daemach. I've been using it for a few days, but haven't learned it well. It has been good about notifying me of syntax errors, however! Rick -Original Message

Re: [jQuery] Append bug?

2007-03-13 Thread Daemach
= colgroup/colgroup + t.innerHTML; Hmmm not sure this will work in IE. Karl Rudd On 3/14/07, Daemach [EMAIL PROTECTED] wrote: I'm not having any luck with the following 2 commands - is this a bug or something I'm missing? I've tried with colgroup / as well. $(#myTable).append(colgroup

Re: [jQuery] Fastest selector for searching a single table column?

2007-03-12 Thread Daemach
So on the selector question, is there any jQuery selector that would enable me to limit the search to a single table column? Daemach wrote: In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want this to work

[jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
I would like to be able to dump the contents of the current selector to the console using $#myselector).debug() without loading a plugin. Something as simple as the following would work, though if you devs have some ideas on how to make it more useful I'm sure it would be welcomed, especially by

Re: [jQuery] best practices / using jquery in functions

2007-03-12 Thread Daemach
I'm relatively new as well but I might be able to shed some light. This is one generic method: $([EMAIL PROTECTED] a.open).each(function() { $(this).click(function(){

Re: [jQuery] Calling all CF'ers... et al...

2007-03-12 Thread Daemach
Sure you can. You can use ajax for anything you want. On the currency validation why can't you replace anything that is not a number or a decimal with ? That should give you a valid number to validate. validate ele.value.replace(/[^0-9\.]/g,) Rick Faircloth wrote: Hi, guys... I

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
*sigh* Fine. I'll just add the function to my local jquery.js It's a pain in the neck to have to add and remove the plugin code for a 30 second test. Klaus Hartl wrote: Erik Beeson schrieb: Given that you don't need (or want) debug functionality in a production environment, I would

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
or opera (not bloody likely) I'll add a function that tests for the availability of a console. Until then this works for me. Christopher Jordan wrote: Daemach, Why don't you just make a nice debug plug-in, that you can include at the top of your code to give you the functions you need

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
I'm not sure what an ant build is, but adding this to the bottom of jquery.js on my dev box works. jQuery.fn.debug = function() {console.log(this); return this;} Jörn Zaefferer wrote: Daemach schrieb: I already have a plugin - it contains the code I put in my first email. I just don't

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: Monday, March 12, 2007 3:41 PM To: discuss@jquery.com Subject: Re: [jQuery] Please add a basic debug function to the jQuery core... I already have a plugin - it contains the code I put in my

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
wrote: Daemach wrote: I would like to be able to dump the contents of the current selector to the console using $#myselector).debug() without loading a plugin. Something as simple as the following would work, though if you devs have some ideas on how to make it more useful I'm sure it would

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
not hit the same walls I did when I was getting started. Karl Rudd wrote: Daemach I think you may have read a little too much harshness into Brice's reply. Brice may have needed to use a little clearer, not so open to being interperated as harsh. Brice is quite helpful usually so it would

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
. Brice Burgess wrote: Daemach wrote: I would like to be able to dump the contents of the current selector to the console using $#myselector).debug() without loading a plugin. Something as simple as the following would work, though if you devs have some ideas on how to make it more useful I'm

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Daemach
of the cool ones on here and I think he's just voicing his opinion in general. I didn't read it as anything personal against ya. :o) Could everybody please just take a deep breath and re-read anything they're about to post? Lets stay cool with each other. :o) Rey Daemach wrote: Thanks

Re: [jQuery] Fastest selector for searching a single table column?

2007-03-12 Thread Daemach
_ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 12, 2007, at 3:40 PM, Daemach wrote: So on the selector question, is there any jQuery selector that would enable me to limit the search to a single table column? Daemach wrote: In my ongoing quest to master

Re: [jQuery] Fastest selector for searching a single table column?

2007-03-11 Thread Daemach
may want to do something similar. Matt Kruse -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Daemach Sent: Saturday, March 10, 2007 5:19 PM To: discuss@jquery.com Subject: Re: [jQuery] Fastest selector for searching a single table column? OK

[jQuery] Fastest selector for searching a single table column?

2007-03-10 Thread Daemach
In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want this to work fast enough to bind to a keyup event without bogging down even on long tables. Using DOM coding if I wanted to search the 3rd column only I would

Re: [jQuery] Fastest selector for searching a single table column?

2007-03-10 Thread Daemach
OK the cellindex property of the td inside which the text field resided would get me the current column, at least in firefox... Daemach wrote: In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want

Re: [jQuery] Adding Currency Validation to Jorn's Validation Plug-In

2007-03-10 Thread Daemach
/cfide/scripts/cfforms.js might give you some ideas. Specifically function _CF_checknumber(object_value, required). Rick Faircloth wrote: Hi, all. I was wondering if anyone knew how to add a currency validation function (US Dollars) to Jorn's Validation plug-in at www.bassistance.de?

Re: [jQuery] NEWS: John Resig Discusses Future Proofing JavaScript Libraries

2007-03-08 Thread Daemach
Good read. A bit further down in the blog he mentioned a push to add browser-level JSON parsing for speed and security. If you are going to Max2007 or cf.objective() perhaps you and Rob could bend Adobe's ear to implement a cfjson tag that emulates cfwddx, including cf2js where it would dump a

[jQuery] Matt Krause - table plugins

2007-03-08 Thread Daemach
Matt, are you reading this list? I am anxiously awaiting the jQuery port of your table filtering/sorting functionality. Is this coming soon? The demos on your site are very very fast and would fit perfectly into a project I'm about to start. -- View this message in context:

[jQuery] Matt Krause

2007-03-08 Thread Daemach
-- View this message in context: http://www.nabble.com/Matt-Krause-tf3373126.html#a9386627 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Matt Krause

2007-03-08 Thread Daemach
Disregard this please - time to get a new keyboard ;) -- View this message in context: http://www.nabble.com/Matt-Krause-tf3373126.html#a9386736 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] cfjson tag (for Daemach)

2007-03-08 Thread Daemach
what you need. Rey.. Daemach wrote: Good read. A bit further down in the blog he mentioned a push to add browser-level JSON parsing for speed and security. If you are going to Max2007 or cf.objective() perhaps you and Rob could bend Adobe's ear to implement a cfjson tag that emulates

Re: [jQuery] Querying javascript datasources - what factors improve speed/efficiency?

2007-03-08 Thread Daemach
pushing the limit for 'light weight', consider simple tab delimited data! a simple header and you can convert it to Javascript in a few lines of code! Not as easy as an eval, but the speed will be worth it! On 3/8/07, Daemach [EMAIL PROTECTED] wrote: While discussing json support in Cold Fusion

Re: [jQuery] Matt Krause - table plugins

2007-03-08 Thread Daemach
To give you some ideas on what I'm looking for: The project I'm working deals with a large amount of tabular data. I am looking for an easy way to bind sorting/filtering to the tables they work with that would allow someone to filter by month/year in a column that contains dates in a predefined

Re: [jQuery] Matt Krause - table plugins

2007-03-08 Thread Daemach
Thanks for the response. This is an accepted forum for jQuery plugins, and the best way to find out if people are interested is to see the response to messages like this. Maybe it is only me :) Why this? Mostly because it feels more organized and fits with the general syntax of other jquery

Re: [jQuery] Querying javascript datasources - what factors improve speed/efficiency?

2007-03-08 Thread Daemach
it assigning the array elements to an object field. Does this sound like what you would need for extra light weight transport? I could draft a plugin, it's not rocket surgery! On 3/8/07, Daemach [EMAIL PROTECTED] wrote: Jake, you are famous for this ;) Sounds great in theory but an example

Re: [jQuery] Querying javascript datasources - what factors improve speed/efficiency?

2007-03-08 Thread Daemach
was slapped together, it was just the technique that I felt is often overlooked for the lightest weight solution for large data sets. I know you can use the technique (and not the little plugin) to lighten the load! On 3/8/07, Daemach [EMAIL PROTECTED] wrote: I understand now and thanks

Re: [jQuery] Anybody able to successfully run Validation plugin on IE 7?

2007-03-07 Thread Daemach
Have you tried setting breakpoints and viewing your error container in the dom to see if anything is happening? Rick Faircloth wrote: Hi, all. I've been trying to get Jorn's (bassistance.de) Validation plugin working correctly for 3 days now. Firebug doesn't complain of any errors.

Re: [jQuery] Anybody able to successfully run Validation plugin on IE 7?

2007-03-07 Thread Daemach
To test selectors you can also drop $(input.myclass) into the firebug console and it will show you what it found. console.log($(input.myclass)); inside your code does the same thing - great for complex anonymous functions. Josh Nathanson-2 wrote: Anybody able to successfully run Validation

Re: [jQuery] How to document a plugin

2007-03-07 Thread Daemach
A standard for listing dependencies would be handy too... Beren wrote: Hi all, I'm about to finish the plugin I've been working for lately and can't wait to release, but this time I would like to document it properly to ease it's use and upgrading. I'm quite anal about this subject yet

[jQuery] Conditional validation - validator plugin.

2007-03-05 Thread Daemach
I need a way to make a field required based on some other condition. Consider the case of a multi-select for Job Type: Baker Janitor Fisherman ... Other (please describe) If someone selects other the description field should be required, otherwise it's hidden. {required:function(){return

[jQuery] What is the status on the Ext port?

2007-03-05 Thread Daemach
I, like probably everyone else on this list, is anxiously awaiting the port of EXT to jQuery. Is there a timeline for this? I am about ready to rebuild one of my clients sites and would very much like to use the ext components as a base. -- View this message in context:

Re: [jQuery] What is the status on the Ext port?

2007-03-05 Thread Daemach
On 3/5/07, Daemach [EMAIL PROTECTED] wrote: I, like probably everyone else on this list, is anxiously awaiting the port of EXT to jQuery. Is there a timeline for this? I am about ready to rebuild one of my clients sites and would very much like to use the ext components as a base. -- View

Re: [jQuery] What is the status on the Ext port?

2007-03-05 Thread Daemach
handle the demanding animations that Ext requires. But yeah, you can begin using it now! We were waiting for Jack to make an official announcement, but it doesn't seem to have come out yet - so we may just announce this officially, anyway. --John On 3/5/07, Daemach [EMAIL PROTECTED] wrote: I

Re: [jQuery] What is the status on the Ext port?

2007-03-05 Thread Daemach
On 3/5/07, Daemach [EMAIL PROTECTED] wrote: I, like probably everyone else on this list, is anxiously awaiting the port of EXT to jQuery. Is there a timeline for this? I am about ready to rebuild one of my clients sites and would very much like to use the ext components as a base

Re: [jQuery] How to access contents of frames/iframes with jQuery?

2007-03-05 Thread Daemach
I'm somewhat noobish, but perhaps you could use a selector with a context? $(#some div, #frameID)... Kynn Jones wrote: Hi again! (Second question in as many days... I guess I'm the overeager noob. :) ) Last night I watched John Resig's screencast Hacking Digg with Firebug and

Re: [jQuery] Help with .each

2007-03-05 Thread Daemach
You might try: $(a).not($([EMAIL PROTECTED])).each(function() {$(this).after(divpLorem Ipsum/p/div);}); Yansky wrote: I'm trying to insert a div after all a elements that don't link to my site. My script is currently working like this: var getLinks = $(a).not($([EMAIL PROTECTED]));

Re: [jQuery] Help with .each

2007-03-05 Thread Daemach
wrote: Thanks Daemach John. Both examples work fine. :) Just one last thing, I'm still a bit fuzzy on the difference between .after() and insertAfter(). I've gone through the documentation a number of times, but they still seem to do the same thing (albeit the latter in reverse

  1   2   >