[jQuery] Re: does jquery 1.2.1 support xpath????

2007-11-24 Thread Matt Stith
I believe xpath expressions should start with a double slash, like $(//html/body) try that On Nov 24, 2007 5:25 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I find something strange in last release. Xpath expressions doesn't work For example var test1 = $('/html/body');

[jQuery] Re: Can jQuery help?

2007-10-02 Thread Matt Stith
try $(#Explination).addClass(Explination); On 10/2/07, Johny [EMAIL PROTECTED] wrote: Hi, I have style defined like this div#Explanation{position:absolute; top:720px; width:10px; right: 0px;margin:40px 0 0 0;} and my HTML code div id=Explanation table border=1 cellpadding=0

[jQuery] Re: $(function()

2007-09-25 Thread Matt Stith
Using a function like that is called an anonymous function, and in this case you are passing the anonymous function to the jQuery object, which stores it and calls on it when the DOM is finished loading. On 9/25/07, Danjojo [EMAIL PROTECTED] wrote: 2 Questions. 1. are there the correct

[jQuery] Re: where is Fisheye menu (not from interface)

2007-09-03 Thread Matt Stith
The only one i've seen is the interface one, you sure you saw an independent plugin? On 9/3/07, Mario Moura [EMAIL PROTECTED] wrote: Hi folks I swear had seen Fisheye menu solution but it wasnt from Interface. It was another JQuery Plugin. Anyone know where is it? Regards Mario

[jQuery] Re: Killing ajax calls

2007-08-22 Thread Matt Stith
A much better solution is to set a delay on the keyup, say, half a second, then execute the ajax request when that timeout finishes. Its much easier on your server to do it this way. On 8/22/07, Tamm Sjödin [EMAIL PROTECTED] wrote: actually that made things even more confusing :P for the

[jQuery] Re: Killing ajax calls

2007-08-21 Thread Matt Stith
Can we get a description of what you are doing? There shouldnt be a reason for a function to send tons of ajax calls. Either condense them to 1, or use a different method. On 8/21/07, Tamm [EMAIL PROTECTED] wrote: I'm working on a function that sends far too many ajax calls, an easy way to

[jQuery] Re: some javascript function on some.html won't work

2007-08-19 Thread Matt Stith
you might be looking for $(#somediv), $(somediv) is looking for somediv, while $(#somediv) is looking for div id=somediv. Check out http://docs.jquery.com/DOM/Traversing/Selectors for some info on selectors On 8/19/07, Michael Lo [EMAIL PROTECTED] wrote: Dear all: can some one help why

[jQuery] Re: [PLUGIN] Templater

2007-08-18 Thread Matt Stith
Sweet, i needed something like this about a week ago, ended up writing my own :-/ Cool anyways! nice job! On 8/18/07, Yehuda Katz [EMAIL PROTECTED] wrote: Hi guys, I have just committed a new plugin to the trunk. It's a simple templater that allows you to create templates that get

[jQuery] Re: ORing selectors

2007-08-15 Thread Matt Stith
I would do something like $(#X).add(.Y); On 8/15/07, rickdog [EMAIL PROTECTED] wrote: What is the cleanest way for ORing select results, e.g. returning all DIVs with id=X or class=Y?

[jQuery] Re: Quick question...

2007-08-15 Thread Matt Stith
one either... obviously. It's quite difficult finding a decent HTML parser in PHP. Oh well... guess I can still dream about one. On Aug 15, 7:29 pm, Matt Stith [EMAIL PROTECTED] wrote: I highly doubt something like that exists. I had trouble finding an HTML parser in any form for php, let

[jQuery] Re: using load cross site

2007-08-13 Thread Matt Stith
The only way around is to use a server-side script as a proxy, as loading scripts cross-site is a security risk, which is why browsers block that out. On 8/13/07, Anthony Leboeuf(Worcester Wide Web) [EMAIL PROTECTED] wrote: Hello, I am working on a website for the BBB and need to load a

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Matt Stith
You need to add the element to the document via .appendTo, .prependTo, or one of those similar methods. It isnt added to the DOM just by creating it. On 8/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I can use $('#id', window.document) to get an existing element from a document in a

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Matt Stith
', window.document).appendTo('body'), nothing happened; If I try $ ('divnew div text here/div', window.document).appendTo('body', window.document), an Invalid Argument error is thrown. Any suggestion? Thanks On Aug 12, 11:43 am, Matt Stith [EMAIL PROTECTED] wrote: You need to add the element

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Matt Stith
you so much. You have solved my big problem now. :) I give you 5 stars! On Aug 12, 5:01 pm, Matt Stith [EMAIL PROTECTED] wrote: You dont need to specify the context when creating new elements, and appendTo takes 1 argument, try like this: $('divtext/div').appendTo(window.document

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Matt Stith
. top.addDiv = function (window) { var doc = window.document; S('divHAHAHAHAHAH test/div').appendTo(doc.body); S('#show', doc).toggle(); } Thanks so much for your help. On Aug 12, 11:04 pm, Matt Stith [EMAIL PROTECTED] wrote: Did you remove the 2nd argument to appendTo

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Matt Stith
I'm Addicted Coding Revolution Best Library I could go on forever On 8/1/07, kiwwwi [EMAIL PROTECTED] wrote: jQuery Rocks!! oh... possibly will add two more words; Thank you :) I'm not the best scripter and jquery has simply allowed me to accomplish with my own personal site

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Matt Stith
O rly? On 8/1/07, Geoffrey Knutzen [EMAIL PROTECTED] wrote: Remember, the two words must be less than a total of 20 characters (compressed) :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Duymelinck Sent: Wednesday, August 01,

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Matt Stith
Ok then ;) On 8/1/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 8/1/07, Matt Stith [EMAIL PROTECTED] wrote: O rly? Ya rly -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: The JS/jquery version of PHP's array_unique

2007-07-31 Thread Matt Stith
I would just do something like: $.prototype.unique = function(arr) { $.merge(arr,arr); }; Simple. On 7/31/07, fambizzari [EMAIL PROTECTED] wrote: PHP developers will all know about the array_unique() function which removes duplicate values from an array. Up until today, we've been using

[jQuery] Re: Newcomer to jQuery, trouble using ajax functions alongside built in jQuery behaviours

2007-07-29 Thread Matt Stith
Some code samples would really be helpful here. You can copy any paste, just change any info like URLs that you dont want us to know. Its hard to describe a block of code using a paragraph of text :P On 7/29/07, Jim Newfer [EMAIL PROTECTED] wrote: Hello everyone, I am quite new to jquery but

[jQuery] Re: Callback after append?

2007-07-25 Thread Matt Stith
Thats right, the only things that need a callback are ajax and animations (unless im missing something) On 7/25/07, Klaus Hartl [EMAIL PROTECTED] wrote: juliandormon wrote: I'm adding html into a div using append. I want to update my custom scrollbar plugin which is in a parent div after

[jQuery] Re: innerFade or jQuery Cycle Plugin feature addition will pay $$$

2007-07-24 Thread Matt Stith
Ill take the payment if he wont :DI know i didnt help at all but i could always use some extra money xD On 7/24/07, juliandormon [EMAIL PROTECTED] wrote: Hi Mike, Awesome. I would like to pay you for this. You turned me down once before for some form plug-in help. Please let me know your

[jQuery] Re: Opening external links in a new window

2007-07-23 Thread Matt Stith
Or even easier, $([EMAIL PROTECTED]'http']).attr('target','_blank'); On 7/23/07, Karl Swedberg [EMAIL PROTECTED] wrote: On Jul 23, 2007, at 6:45 PM, cfdvlpr wrote: Is there an easy way to do this that does not require you to hand code each external link? Can you write a Jquery function

[jQuery] Re: Opening external links in a new window

2007-07-23 Thread Matt Stith
Im not really worried about that.. The validator wont notice that your setting the target with javascript, so its fine for me :P On 7/23/07, Karl Swedberg [EMAIL PROTECTED] wrote: On Jul 23, 2007, at 7:53 PM, Matt Stith wrote: Or even easier, $([EMAIL PROTECTED]'http']).attr('target','_blank

[jQuery] Re: jQuery for Dummies

2007-07-19 Thread Matt Stith
Wow, quite an impressive rep! Glad to have you on the jQuery side, Mitch! On 7/20/07, Michael Geary [EMAIL PROTECTED] wrote: Mitch?!? Holy cow, it's good to see your name here. Listen up, kids. The Waite Group published some of the most important books of the microcomputer / personal

[jQuery] Re: SITE: American Eagle (ae.com)

2007-07-18 Thread Matt Stith
Sweet! Even though they are still using document[something] in alot of places (namely, f_standard_js.js), they seem to be making good use of jQuery! On 7/18/07, Quin Hoxie [EMAIL PROTECTED] wrote: Just noticed that American Eagle's website ae.com is using jquery. A quick glance shows they are

[jQuery] Re: Announce: Confirmer plugin

2007-07-18 Thread Matt Stith
Lol, i still have friends and relatives that double click everything... Ive seen this scenario play out a couple times.. When the X button is over an ad or something.. :( On 7/18/07, Michael Geary [EMAIL PROTECTED] wrote: Now that i think about it, i'm constantly saying to my g/f, don't

[jQuery] Re: misunderstanding of .text()?

2007-07-15 Thread Matt Stith
.load isnt a blocking function, meaning that it starts the ajax request and then continues the chain. So you might try something like this: $('pre').load('jquery.splitter.js',function() { // Do escaping stuff here }); The 2nd argument to load is a function that will be called once the request

[jQuery] Re: Possible idea regarding $() and multiple selectors via add()

2007-07-13 Thread Matt Stith
.add is intended to be used in the chain, in case you need something like this: $(#foo).html(foobar).add(#bar).slideDown(); Would add foobar to #foo, and slide both #bar and #foo down. Also, you can do $(#foo,#bar) to select both. On 7/13/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So

[jQuery] Re: Element defined or not

2007-07-10 Thread Matt Stith
Try if ($(selector).length0){ //... } On 7/10/07, Sebastián V. Würtz [EMAIL PROTECTED] wrote: Wich is the best way to know if a element for example a div is defined? like in php if ( empty($test) ) or if ( isset($test) ) thx

[jQuery] Re: Manipulating loaded data

2007-07-09 Thread Matt Stith
This has come up many many many times on this list. You need to put a callback in the .load call, like this: $('.galleryList').load(data.dat,function() { // Do bindings here }); On 7/9/07, divinci [EMAIL PROTECTED] wrote: Hi all, firstly let me thank you all for supporting such a great

[jQuery] Re: JQuery - CrossBrowser? - Script not working in Firefox

2007-07-08 Thread Matt Stith
Its working fine for me in firefox. Try using firebug or just the javascript console to see if any errors are being reported. What version of firefox are you using? On 7/7/07, AtlantaGeek [EMAIL PROTECTED] wrote: With JQuery supposedly crossbrowser capable, I did not think the script I'm

[jQuery] Re: question about redirecting url after post using jquery

2007-07-05 Thread Matt Stith
You might wanna use firebug and make sure your getting a correct response. It might be making an error because what you are assigning isnt a url. On 7/5/07, Mike Fern [EMAIL PROTECTED] wrote: hi devs, i'm new to this group. i recently play with jquery and feel happy with the features and

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Matt Stith
Thats not exactly something you want javascript doing, thats more of a server-side thing. Are you using php? On 6/26/07, cfdvlpr [EMAIL PROTECTED] wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not impossible to do.

[jQuery] Re: How to terminate each befor full iteration

2007-06-17 Thread Matt Stith
if (!okay) return; maybe? :P On 6/17/07, wyo [EMAIL PROTECTED] wrote: I'd like to terminat (beak) the iteration in the following code if a value is emtpy. Is that somehow possible? var okay = true; $('.input_required').each (function (i){ if ($(this).val() == ) { okay = false;

[jQuery] Re: Newbie question about click()

2007-06-15 Thread Matt Stith
I believe you can use $(p).toggle(slow); and it will achieve the result you are after, no need for 2 seperate functions. On 6/15/07, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi, I'm a newbie in jquery please be patient :-) I'm playin with jquery mixing some tutorials. I'm trying to

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Matt Stith
Yes, getElementById returns the first one found, i.e. the first one in the dom, if there are multiple nodes with the same id. On 6/12/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 6/12/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Plus, what happens if you have: div id=bam / span

[jQuery] Re: Show hide div with cookie for remembering position -- possible solution

2007-06-11 Thread Matt Stith
Hi! Heres a couple things i might do $('a.show').hide(); $('a.hide').click(function(){ $('a.show').show(); $('h2.title,.view-header-latest').add(this).hide(); // Combine multiple $.cookie('hideShow,hide,{expires:365}); // Only need one

[jQuery] Re: getting the caller of an event

2007-06-11 Thread Matt Stith
using javascript is much better than putting the functions inline in the HTML. Its alot cleaner, and makes it alot easier to manage. On 6/12/07, james_027 [EMAIL PROTECTED] wrote: Hi, I have think of that solution, and but my concern is I have read somewhere that says, why change the dom if

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
why not just use /(\s+)/ in firefox too then? It gives me the correct number of 5. On 6/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: javascript:alert(hello there Opera.split(/\b/).length) Firefox says 5 , safari says 6, Opera says 15! it really got me confused while writing some jQuery code! now I

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
o.O damn, like you said, i didnt know there was that big of a difference! On 6/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: safari says 3 for javascript:alert(hello there Opera.split(/(\s+)/).length) On 6/10/07, Matt Stith [EMAIL PROTECTED] wrote: why not just use /(\s+)/ in firefox too

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
IE would throw an exception and try to install adware on your computer. :P On 6/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: WWIED? What would IE do? On 6/10/07, Matt Stith [EMAIL PROTECTED] wrote: o.O damn, like you said, i didnt know there was that big of a difference! On 6/10/07, Ⓙⓐⓚⓔ [EMAIL

[jQuery] Re: Replace

2007-06-08 Thread Matt Stith
...k? :P You got a question? On 6/8/07, Kixe [EMAIL PROTECTED] wrote: select id=catid name=catid option value=1A (1st)/option option value=2B (2nd)/option /select

[jQuery] Re: Getting the window/frame size with JQuery .. help

2007-06-08 Thread Matt Stith
Hmmm.. I think we need some sort of How do i... page on the jquery website... Ive seen some of the same questions, like this one, asked over and over On 6/8/07, Brandon Aaron [EMAIL PROTECTED] wrote: The dimensions plugin extends the built-in height and width methods to work on the window and

[jQuery] Re: Append Area to Map

2007-06-08 Thread Matt Stith
A bit of HTML would help a bit! On 6/8/07, Jimmy Glass [EMAIL PROTECTED] wrote: I have been trying to append a freaking Area tag to a MAP tag for about 2 hours now... The data argument is always a string. function(data) {

[jQuery] Re: select td 2 levels up

2007-06-07 Thread Matt Stith
You could just do $(this).parent().parent().addClass(greenback); That should work fine. On 6/7/07, Josh Nathanson [EMAIL PROTECTED] wrote: I am trying to select the first td element two levels up from the clicked div element. I have this, which works, but it's ugly.

[jQuery] Re: CurvyCorners Minified

2007-06-06 Thread Matt Stith
You can go ahead and do it yourself! http://dean.edwards.name/packer/ (google is your friend ;) ) On 6/6/07, Glen Lipka [EMAIL PROTECTED] wrote: Is there a packed / minified version of the jQuery Curvy Corners? Glen

[jQuery] Re: jquery way to set page title?

2007-06-01 Thread Matt Stith
No need for jquery here, using normal javascript would be much faster. document.title = blahblahblah; (i think :-\ ) On 6/1/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Subject line is the question. How do I use JQuery to set the page title (what goes in the TITLE tags)? Thanks, -

[jQuery] Re: good show/hide icon

2007-05-30 Thread Matt Stith
Search up 'Famfamfam', that site has an icon set called 'Silk' thats available for free, that has tons of icons, for pretty much anything you can imagine. Also you might wanna check out IconBuffet.com (if you sign up, let me know your screenname, ill send you a couple sets) On 5/30/07, SamCKayak

[jQuery] Re: good show/hide icon

2007-05-30 Thread Matt Stith
You could use the icons 'add.png' and 'delete.png' for hide/show maybe? Anyways, just add me as a friend on IB (im seventoes), and comment on my page for any icons you want, i have tons of stamps so i can send you anything. On 5/30/07, SamCKayak [EMAIL PROTECTED] wrote: Silk is a great deal,

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Matt Stith
Yeah, you can select only hidden or visible objects by using $(#selector:visible) or $(#selector:hidden) easy as jCake ;) On 5/30/07, SamCKayak [EMAIL PROTECTED] wrote: Does jQuery .show() and .hide() set a flag anywhere on an object to indicate if it was last show()n or hide()n? Sam

[jQuery] Re: jQuery on Rails-related

2007-05-29 Thread Matt Stith
Its a mod of Ruby On Rails that replaces the default Prototype/Scriptaculus with jQuery. On 5/29/07, Daemach [EMAIL PROTECTED] wrote: What is jQuery on Rails? ;) On May 29, 9:52 am, Yehuda Katz [EMAIL PROTECTED] wrote: Hey guys, Great news! Hpricot has accepted my patches to make hpricot

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: why do you have !-- comments -- instead of /* comments */ in a script? On 5/27/07, Network Newbie [EMAIL PROTECTED] wrote: When the function 'globalEval'

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
[EMAIL PROTECTED] wrote: The older browsers that jQuery doesn't support? On 5/27/07, Matt Stith [EMAIL PROTECTED] wrote: The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: why do you have !-- comments

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
True, but alot of cell phone browsers will show the scripts if its not commented out. On 5/27/07, RobG [EMAIL PROTECTED] wrote: On May 28, 5:10 am, Matt Stith [EMAIL PROTECTED] wrote: The HTML comments are to hide the script from older browsers that dont understand javascript. The use

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
on the topic? -- Brandon Aaron On 5/27/07, Matt Stith [EMAIL PROTECTED] wrote: True, but alot of cell phone browsers will show the scripts if its not commented out. On 5/27/07, RobG [EMAIL PROTECTED] wrote: On May 28, 5:10 am, Matt Stith [EMAIL PROTECTED] wrote: The HTML comments

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Matt Stith
Mmmm im hungry now... On 5/22/07, Benjamin Sterling [EMAIL PROTECTED] wrote: hmmm I can deal with silver, I prefer white gold though, can we make that happen? Not sure about spam cake tho, but I would like some spam fajitas

[jQuery] Re: $(document).ready(function() {

2007-05-21 Thread Matt Stith
It can be used as many times as you like, anywhere after jquery is included. The scripts will run in the order they were added, after the DOM is ready. On 5/21/07, SamCKayak [EMAIL PROTECTED] wrote: Can $(document).ready(function() { appear in an included script src=filename or must it

[jQuery] Re: OT: jQuery - Doctype - Quirkness

2007-05-21 Thread Matt Stith
Nope, jQuery and most other javascript libraries (probably all of them) should work with almost any doctype. On 5/21/07, Fabien Meghazi [EMAIL PROTECTED] wrote: Hi all, Maybe this is a bit off topic, but I was wondering if a specific doctype should be used in order to build successfull apps

[jQuery] Re: jquery.us

2007-05-18 Thread Matt Stith
o.O that line is equal to: done = done; done++ incriments the variable, and returns the old value! On 5/18/07, abba bryant [EMAIL PROTECTED] wrote: done = done++; george.gsgd wrote: Has anyone seen this: http://jquery[dot]us (not linked so as not to aid their efforts) Obviously

[jQuery] Re: Chili 1.8 gets chainability

2007-05-17 Thread Matt Stith
Correct link: http://noteslog.com/post/chili-18-released-today/ On 5/17/07, Chris W. Parker [EMAIL PROTECTED] wrote: On Thursday, May 17, 2007 1:12 PM Andrea Ercolino said: Hi everybody. I've just released http://notelog.com/category/chili/ Chili 1.8 , which eventually gets a very

[jQuery] Re: * Important: Repent, Completely trust in God only and, Love Him with all of your heart.

2007-05-15 Thread Matt Stith
ha, some of this stuff is kinda funny... On 5/15/07, ThePengwin [EMAIL PROTECTED] wrote: If you refuse to trust in God, it's not my loss. So yeah, why are you trying to enfore your beliefs on people again?

[jQuery] Re: Live Example Question

2007-05-10 Thread Matt Stith
You can right click and click View Source to see the source code of the page, just search around untill you find a div with the class of contentToChange, and inside of that, a 'p' with the class 'firstparagraph' On 5/10/07, c19h28o2 [EMAIL PROTECTED] wrote: Hi, On the jquery live examples

[jQuery] Re: .load external page by url

2007-05-09 Thread Matt Stith
Thats correct, ajax calls cannot retrieve external pages for security reasons. The only way to get external pages onto your page is to use an iframe, or a simple server side proxy that you can call with your ajax. On 5/9/07, Massimiliano Marini [EMAIL PROTECTED] wrote: something like this:

[jQuery] Re: this is a test

2007-05-07 Thread Matt Stith
...of the emergency alert system. On 5/7/07, Andy Matthews [EMAIL PROTECTED] wrote: * Andy Matthews *Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com inline:

[jQuery] Re: this is a test

2007-05-07 Thread Matt Stith
We now return you to your regularly scheduled mailing list. /bad joke On 5/7/07, Christopher Jordan [EMAIL PROTECTED] wrote: ... Had this been a real emergency, Rey Bango would have emailed the list to tell us... ;) Matt Stith wrote: ...of the emergency alert system. On 5/7/07, Andy

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Matt Stith
o.O that doesnt look good... On 5/6/07, MrNase [EMAIL PROTECTED] wrote: What happened to jquery.com?

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread Matt Stith
Personally i like the relativaly small community that jQuery has, its easier to identfiy people and the mailing list doesnt get thousands of emails per day. On 5/4/07, John Resig [EMAIL PROTECTED] wrote: I don't think he has anything to do with name. Dr. Dobbs is a business-centric

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread Matt Stith
. You'd have to combine Dojo, Prototype, and Yahoo UI to get the level of posts that we do. --John On 5/4/07, Matt Stith [EMAIL PROTECTED] wrote: Personally i like the relativaly small community that jQuery has, its easier to identfiy people and the mailing list doesnt get thousands of emails per

[jQuery] Re: Britney Spears Sex VID!!!!!!

2007-05-01 Thread Matt Stith
o rly? On 5/1/07, naughtytime [EMAIL PROTECTED] wrote: Just found it, it probably won't work long... http://tinyurl.com/2en7ge it looks like the vid is from before her pregnancy, from what i can tell her body is definitely in shape. __ and some pictures

[jQuery] Re: OT: Suppress Apache Authentication

2007-05-01 Thread Matt Stith
short answer: nope. :-/ On 5/1/07, Sean Catchpole [EMAIL PROTECTED] wrote: Ok, so now I have this same scenario where I am trying to load ajax from a apache authenticated area and it popping up with the login box. Is there any way to hide that? I'm looking all over the web, but I haven't

[jQuery] Re: Pause Plugin- why it does not work for me

2007-04-26 Thread Matt Stith
i believe the pause plugin broke around v1 of jQuery. On 4/26/07, joomlafreak [EMAIL PROTECTED] wrote: Hi James Thanks for your reply but it seems your method also does not work. By following your method, if I want to change the css property of an element after 4 seconds I would be writing

[jQuery] Re: Sortables: making a DIV sortable that didn't start out that way

2007-04-25 Thread Matt Stith
Basically, instead of putting the $(..).Sortable code in the document.ready, just put it in the click handler for a sort button or something like that! Then, when the link is clicked, the items will become sortable. Im not quite sure how to stop them from being sortable, but maybe someone else

[jQuery] Re: Q: Is the $.inArray function supported?

2007-04-15 Thread Matt Stith
As to your question, i wouldnt think it would be removed, since i think its used a couple times in the jQuery core, so it should be around for awhile. On 4/15/07, Karl Rudd [EMAIL PROTECTED] wrote: For jQuery objects you can also use the indexOf() function:

[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread Matt Stith
You arent supposed to include both the packed and the unpacked versions, just remove the link that includes jquery.pack.js and it should work fine. On 4/13/07, Sharique [EMAIL PROTECTED] wrote: I'm newbie to jquery I have written a simple page for test. Here is the code. It only run in opera

[jQuery] Re: can you do this with JQuery

2007-04-12 Thread Matt Stith
Try searching for Accordian plugin, you might be able to modify that to get what you need. On 4/12/07, Kush Murod [EMAIL PROTECTED] wrote: Hi, Is there a JQuery plugin that can accomplish this sort of behavior http://luddep.se/new/ --Kush

[jQuery] Re: Job Opening - Lead Web Developer @ Fluid

2007-04-12 Thread Matt Stith
Think they would hire a 16 year old :? On 4/12/07, Brian Cherne [EMAIL PROTECTED] wrote: I've been really enjoying jQuery. When they said a lead web developer position was opening at my company I naturally thought to post it here to see if any jQuery-oriented folk were interested... but... Is

[jQuery] Re: Find Programming Job?

2007-04-09 Thread Matt Stith
Spam is a disadvantage of the move to google groups, we just gotta tolerate it for now :-\ On 4/9/07, Christopher Jordan [EMAIL PROTECTED] wrote: Does anybody else feel like this is spam? Or am I just weird? Chris Cindy wrote: Find Your Programming Job Vacancy and resources here --

[jQuery] Re: slide window to a set height??

2007-04-09 Thread Matt Stith
Yep! Check out the .animate method! $(stuff).animate({height:30},speed,callback); You might wanna bookmark www.visualjquery.com, its the best way to browse the wonders of jQuery! On 4/10/07, sspboyd [EMAIL PROTECTED] wrote: Hi, I have looked at the docs and examples but I'm not sure if this