Re: [jQuery] Jquery, AJAX, and php session variables

2007-03-30 Thread Aaron Heimlich
already sent error (this means that the call to session_start() should probably be the very first thing your script does). If you are using output buffering, then you can call it pretty much anywhere in your script before you send the contents of the output buffer to the browser. -- Aaron Heimlich Web

Re: [jQuery] Jquery, AJAX, and php session variables

2007-03-30 Thread Aaron Heimlich
with cookies and sessions. On 3/30/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 3/30/07, Kim Johnson [EMAIL PROTECTED] wrote: Should I be recalling session_start? As a general rule, you should call session_start() in *every* PHP script that accesses $_SESSION. Where you call it depends on whether

Re: [jQuery] Jquery, AJAX, and php session variables

2007-03-30 Thread Aaron Heimlich
call session_start() again as a callback function after the ajax finishes, perhaps...? thanks, -kim --- Aaron Heimlich [EMAIL PROTECTED] wrote: On 3/30/07, Kim Johnson [EMAIL PROTECTED] wrote: Should I be recalling session_start? As a general rule, you should call session_start

Re: [jQuery] Jquery, AJAX, and php session variables

2007-03-30 Thread Aaron Heimlich
://www.malsup.com/jquery/block/) instead. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Jquery, AJAX, and php session variables

2007-03-30 Thread Aaron Heimlich
included startsession.php page. Contains all of the jquery/ajax which you mentioned below, and all HTML header stuff) --- Aaron Heimlich [EMAIL PROTECTED] wrote: Question: is session_start() called on the page where this code is run? var loggedin = ?=$_SESSION['loggedin']?; if (loggedin

Re: [jQuery] nightly builds

2007-03-30 Thread Aaron Heimlich
. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Aaron Heimlich
); } and see if requestError gets called. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Aaron Heimlich
Your welcome. HTH. On 3/29/07, Rick Faircloth [EMAIL PROTECTED] wrote: Also… thanks for actually answering the question I asked along with your other help. Rick *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Aaron Heimlich *Sent:* Thursday, March 29, 2007 10:33 AM

Re: [jQuery] Correct way to setup a callback function

2007-03-28 Thread Aaron Heimlich
? Thanks, Rick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] Release: Validation plugin beta 2

2007-03-27 Thread Aaron Heimlich
to Dreamhost anyway, because my current one sucks @$$). I can email you the code if you want, but I haven't gotten to JSON exporting yet (it's on my todo list and should get done sometime soon considering I'm going to be using all of this in my current project). -- Aaron Heimlich Web Developer [EMAIL

Re: [jQuery] Release: Validation plugin beta 2

2007-03-27 Thread Aaron Heimlich
On 3/27/07, Aaron Heimlich [EMAIL PROTECTED] wrote: The project is at http://aheimlich.freepgs.com/projects/php/hvalidator , but my host is giving me trouble right now Luckily, the demo is still accessible (which includes a download link): http://aheimlich.freepgs.com/wp-content/portfolio

Re: [jQuery] Release: Validation plugin beta 2

2007-03-27 Thread Aaron Heimlich
On 3/27/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Ok, thanks. Let me know when you got that JSON export ready, that seems to be the most interesting part. I'll be sure to let you know when that part's done. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] bind two events to same function

2007-03-27 Thread Aaron Heimlich
function is fired. Whenever the mouse moves off of the element, the second specified function fires. Source: http://docs.jquery.com/Events#hover.28_over.2C_out_.29 What Josh wants to do is bind the *exact same function* to do different events (which is what I showed him how to do). -- Aaron

Re: [jQuery] bind two events to same function

2007-03-27 Thread Aaron Heimlich
() { self.bind(this,action); }; return this; }; That code might not work as intended, but the principle is valid. -blair Aaron Heimlich wrote: function doSuperCoolStuff(evt) { // do super cool stuff... } $('[EMAIL PROTECTED]submit]').bind(mouseover, doSuperCoolStuff

Re: [jQuery] How do I write this CF code in JS?

2007-03-26 Thread Aaron Heimlich
(Form.Principal) /CFIF in js? Rick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list

Re: [jQuery] Beta Testers needed for Form Plugin file upload support

2007-03-22 Thread Aaron Heimlich
of the ajaxSubmit method in a function called fileUpload. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Beta Testers needed for Form Plugin file upload support

2007-03-22 Thread Aaron Heimlich
anyway. h, that could be an issue when trying to use Taconite together with this. I suppose I'll just have to do it the hard way : ) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] Docs for id and name functions?

2007-03-20 Thread Aaron Heimlich
On 3/20/07, Brad Perkins [EMAIL PROTECTED] wrote: Were these commands removed? Yes, they were removed in 1.1 as part of a general cleaning of the API If not, are these simply shortcuts for attr('id) and attr('name')? Yup, that's why they were removed. -- Aaron Heimlich Web Developer

Re: [jQuery] Docs for id and name functions?

2007-03-20 Thread Aaron Heimlich
No problem. HTH On 3/20/07, Brad Perkins [EMAIL PROTECTED] wrote: Thanks for the clarification. -- Brad ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

Re: [jQuery] loading js files at the bottom of the page

2007-03-20 Thread Aaron Heimlich
On 3/20/07, Matt Stith [EMAIL PROTECTED] wrote: The browser will cache scripts and css included in the header, but not anywhere else. Really!? Where did you get that from? -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Release: Validation plugin beta 2

2007-03-20 Thread Aaron Heimlich
Zaefferer http://bassistance.de ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list

Re: [jQuery] bgiframe update, sneak peak

2007-03-15 Thread Aaron Heimlich
-- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Reference to the element that triggered the event

2007-03-13 Thread Aaron Heimlich
John -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.9/719 - Release Date: 12/03/2007 08:41 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web

Re: [jQuery] Retrieve content from element using AJAX?

2007-03-13 Thread Aaron Heimlich
On 3/12/07, Yansky [EMAIL PROTECTED] wrote: Thanks for the replies guys. Unfortunately, I don't have access to the server (hence the need to use Greasemonkey). Now you do: http://www.wampserver.com/en -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] How can this be modifed to accept other types of input?

2007-03-13 Thread Aaron Heimlich
)] = $(this).val(); }); // closes input:text function Thanks, Rick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] How can this be modifed to accept other types of input?

2007-03-13 Thread Aaron Heimlich
Forgot to demo my custom selector: $(#myForm :userInput) Selects all children of #myForm that either have a type of text, password, radio, checkbox or file, are select elements, or are textarea elements. On 3/14/07, Aaron Heimlich [EMAIL PROTECTED] wrote: $(input:not(:submit):not(:reset

Re: [jQuery] How to tell numerically which sibling element I've triggered?

2007-03-12 Thread Aaron Heimlich
discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] How to tell numerically which sibling element I've triggered?

2007-03-12 Thread Aaron Heimlich
} ); } ); Except that it doesn't (to my knowledge) get passed to event handlers. The first parameter of an event handler is the event object. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Why is this error occurring?

2007-03-11 Thread Aaron Heimlich
provide integration with Firebug. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Validation help with Date Selector

2007-03-11 Thread Aaron Heimlich
On 3/11/07, Rick Faircloth [EMAIL PROTECTED] wrote: I didn't see anything about submitHandlers at http://jquery.bassistance.de/api-browser/plugins.html Can you be more specific? http://jquery.bassistance.de/api-browser/plugins.html#validateMap Fifth item down under Options -- Aaron

Re: [jQuery] How do I fix this error?

2007-03-11 Thread Aaron Heimlich
/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] How do I fix this error?

2007-03-11 Thread Aaron Heimlich
the .validate bracket? }); // closes the .validate bracket /script ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Firebug and validation plugin--revisted (Was Re: release: Validation plugin beta 1)

2007-03-07 Thread Aaron Heimlich
, but hasn't gotten to the point where it begins to execute it yet. Firebug probably breaks whenever the JS interpretor hits that line, regardless of what it's actually doing with it. This is really something that you should ask Joe Hewitt (the creator of Firebug), though. -- Aaron Heimlich Web Developer

Re: [jQuery] jQuery Browser Detection

2007-03-06 Thread Aaron Heimlich
of my initialization is done in $().ready(), so if that code never runs, then IE 5.5 won't have anything to complain about. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Firebug and validation plugin--revisted (Was Re: release: Validation plugin beta 1)

2007-03-06 Thread Aaron Heimlich
On 3/7/07, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote: Do you know in what line number I have to set the Firebug breakpoint so that I'll get there when clicking the submit button? TIA Set a breakpoint on line 228 of jquery.validate.js. -- Aaron Heimlich Web Developer [EMAIL PROTECTED

Re: [jQuery] get class name

2007-03-05 Thread Aaron Heimlich
#myId has a particular class or not use this: if( $(#myId).is(.myClass) ) { // Do stuff... } -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] get class name

2007-03-05 Thread Aaron Heimlich
-- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] creating and inserting a form on-the-fly

2007-02-18 Thread Aaron Heimlich
-- label for=fnameAwesome Dude, what be thy name?/label input type=text id=fname name=fname /fieldset /form -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com

Re: [jQuery] jqModal: closeClass and href?

2007-02-18 Thread Aaron Heimlich
On 2/19/07, fatjoez [EMAIL PROTECTED] wrote: how do I delay this action for about 2 seconds? function jQModalClose() { $(.jqmClose).click(); } setTimeout(jQModalClose, 2000); -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Forms Plugin: target scripts evaluated TWICE

2007-02-17 Thread Aaron Heimlich
heard of any issues with $().load. I just copied the code from there. It passes the unit tests in IE6. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

Re: [jQuery] Forms Plugin: target scripts evaluated TWICE

2007-02-17 Thread Aaron Heimlich
now you know. Hope that helped. Thanks a lot, dude. I'll create a formal issue for this sometime this weekend. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-02-17 Thread Aaron Heimlich
On 2/17/07, Toby [EMAIL PROTECTED] wrote: $(a).focus(function(){ this.blur(); }); This fixes the little drag-out problem too, woohoo! Hate to rain on your parade, but doing that make all links completely inaccessible to people who navigate using a keyboard instead of a mouse. -- Aaron

Re: [jQuery] Forms Plugin: target scripts evaluated TWICE

2007-02-16 Thread Aaron Heimlich
/svn/rev/1357/ line 219 [2] http://jquery.com/dev/bugs/bug/914/ [3] http://jquery.com/dev/svn/rev/1295/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Replying to the digest mode

2007-02-16 Thread Aaron Heimlich
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Finding element that matches anchor link

2007-02-15 Thread Aaron Heimlich
On 2/15/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 2/15/07, Danny Wachsstock [EMAIL PROTECTED] wrote: I'm looking at the HTML specs (http://www.w3.org/TR/1999/REC-html401-19991224/struct/links.html#edef-A ) and hash doesn't look like a standard attribute. That's because it's

Re: [jQuery] Finding element that matches anchor link

2007-02-15 Thread Aaron Heimlich
for a elements ( http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-48250443). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Finding element that matches anchor link

2007-02-15 Thread Aaron Heimlich
Information) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Finding element that matches anchor link

2007-02-15 Thread Aaron Heimlich
! -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Handling you javascript files

2007-02-14 Thread Aaron Heimlich
packer that gives similar results that could be implemented in the solution given in the blogpost above? As it happens, someone ported Dean's packer to PHP! http://dean.edwards.name/weblog/2006/12/packer-php/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Attribute Selector issue

2007-02-13 Thread Aaron Heimlich
]. The bad news, is that if you're not comfortable grabbing jQuery from SVN, you'll probably have to wait until the next official release until you can take advantage of it. [1] http://jquery.com/dev/svn/rev/1316/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] jQuery Validation 1.0 Alpha

2007-02-13 Thread Aaron Heimlich
could help. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Miniscule (1k) Drag'n'Resize for jqModal via jqDnR

2007-02-12 Thread Aaron Heimlich
On 2/12/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: FYI - The following works for me in IE6/FF1.5 (the only 2 I tested) Works in FF 2.0.0.1 and IE 7 too. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery

Re: [jQuery] JQuery AJAX PHP tutorial

2007-02-12 Thread Aaron Heimlich
On 2/12/07, Jake McGraw [EMAIL PROTECTED] wrote: If you're using the latest version of PHP (5.0.2) I think you mean 5.2.0. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Does jQuery support File Size Check before uploading?

2007-02-12 Thread Aaron Heimlich
/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Validation 1.0 Alpha

2007-02-11 Thread Aaron Heimlich
is what I believe your current setup does), you tell them *specifically why* their input was not what you expected them to enter. ** alnum is a custom rule that checks if the input contains only alphanumeric characters (letters and numbers) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

Re: [jQuery] jQuery Validation 1.0 Alpha

2007-02-11 Thread Aaron Heimlich
I should also add that I'm not trying to replace the current error message functionality, just add to it. On 2/11/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 2/10/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: I think the better approach tells the user what it expects with one message

Re: [jQuery] Problem with [EMAIL PROTECTED]

2007-02-09 Thread Aaron Heimlich
(object) codebase (applet, object) data (object) href (a, area, base, link) longdesc (frame, iframe, img, input type=image) profile (head) src (frame, iframe, img, input type=image, script) usemap (img) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Problem with [EMAIL PROTECTED]

2007-02-09 Thread Aaron Heimlich
On 2/9/07, Brandon Aaron [EMAIL PROTECTED] wrote: Thank you Aaron! Happy I could help! -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Validation 1.0 Alpha

2007-02-09 Thread Aaron Heimlich
/hvalidator -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

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

2007-02-05 Thread Aaron Heimlich
, Arne ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Does this select what I suspect?

2007-02-05 Thread Aaron Heimlich
-- http://www.cjordan.info ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list

Re: [jQuery] Really Ugly?

2007-01-31 Thread Aaron Heimlich
://www.w3.org/TR/selectors-api/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Really Ugly?

2007-01-31 Thread Aaron Heimlich
And here's a discussion of innerHTML by Peter Paul Koch (aka ppk): http://www.webreference.com/programming/javascript/ppk2/4.html On 1/31/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 1/31/07, Joel Birch [EMAIL PROTECTED] wrote: Let's not forget that xmlHttpRequest is also not standard

Re: [jQuery] new plugin: comet client

2007-01-30 Thread Aaron Heimlich
/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] new plugin: comet client

2007-01-30 Thread Aaron Heimlich
On 1/30/07, Giuliano Marcangelo [EMAIL PROTECTED] wrote: this will lead you to more resources explanations about Comet http://cometd.com/ Thank, comet looks pretty neat -- great for chat servers and such. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-27 Thread Aaron Heimlich
Brice -- There's a demo of blockUI being used for modal dialogs that you may want to check out: http://www.malsup.com/jquery/block/dialog.html -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com On 1/27/07, Brice Burgess [EMAIL PROTECTED] wrote: Mike Alsup wrote

Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-27 Thread Aaron Heimlich
On 1/27/07, Brice Burgess [EMAIL PROTECTED] wrote: Perhaps I'm way off? :) Not at all! You just seemed to be implying that it wasn't possible to create a basic modal dialog with blockUI (which isn't true, as that demo shows). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Aaron Heimlich
this a reasonable use case? Agreed; Just because element IDs have to be unique doesn't mean that the element has to be in the same place on every page. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Aaron Heimlich
. [1] http://jquery.com/src/jquery-latest.js [2] I'll take your word for it that that's what your using since jQuery packed doesn't include the SVN Rev. number -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery

Re: [jQuery] OT: CSS Conditional Comments

2007-01-24 Thread Aaron Heimlich
On 1/25/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: So the sum total is to use conditional comments around the link to a separate css for IE. Actually, you can use conditional comments around any HTML (but only HTML) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] OT: CSS Conditional Comments

2007-01-24 Thread Aaron Heimlich
On 1/25/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Actually, you can use conditional comments around any HTML (but only HTML) That means that both of these are valid: style type=text/css #foo { /* do stuff for every browser...*/ } /style !--[if lte IE 6] style type=text/css

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

2007-01-17 Thread Aaron Heimlich
a reload the page disappears and the progress bar keeps loading, and loading, and loading... (it never stops) I'm getting something similar in IE7 as well (FF and Opera seem fine). A View Source reveals this: script id=__ie_init defer=true src=//:/script and that's it. -- Aaron Heimlich Web

Re: [jQuery] what's the difference between document.getElementById('id') and $('#id') ?

2007-01-16 Thread Aaron Heimlich
object if ( window == this ) return new jQuery(a,c); // rest of jQuery function. Typical usage of jQuery(...) will trigger the code on line 4 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list

Re: [jQuery] [plugin] jdMenu - Finally Released!

2007-01-15 Thread Aaron Heimlich
/svn/trunk/plugins/fix_events/fix_events.js [1] http://docs.jquery.com/index.php?title=Special:Whatlinksheretarget=Events_%28Guide%29 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] New Website

2007-01-14 Thread Aaron Heimlich
-- http://cjordan.info ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] Newbie: Ok... how do I code this?

2007-01-14 Thread Aaron Heimlich
with this. What kind of error are you getting? -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

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

2007-01-14 Thread Aaron Heimlich
/block/dialog.html Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

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

2007-01-14 Thread Aaron Heimlich
On 1/14/07, Mike Alsup [EMAIL PROTECTED] wrote: Good catch, Aaron - thanks. That style was bleeding through because I forgot to add the cursor style on the question dialog. It's fixed now. Thanks. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-14 Thread Aaron Heimlich
On 1/14/07, Matt Stith [EMAIL PROTECTED] wrote: I am a jquery super fans! Hey paisanos! It's the Super jQuery Super Show! -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] radio buttons, label and double fired functions - thanks

2007-01-12 Thread Aaron Heimlich
On 1/12/07, Bruce MacKay [EMAIL PROTECTED] wrote: Thanks Aaron for the solution and explanation - my problem is now fixed and I understand how/why. I'm happy I could help. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

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

2007-01-12 Thread Aaron Heimlich
://www.google.com/support/webmasters/bin/topic.py?topic=8473 (look at the Setting the preferred domain section towards the bottom of the page) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] fadeIn/fadeOut question

2007-01-11 Thread Aaron Heimlich
knowledge, been officially released). Interface SVN repository: http://jquery.com/dev/svn/trunk/plugins/interface/ Stefan's Dev Branch: http://jquery.com/dev/svn/branches/stefan-dev/ Paul's Dev Branch: http://jquery.com/dev/svn/branches/paul-dev/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED

Re: [jQuery] radio buttons, label and double fired functions

2007-01-11 Thread Aaron Heimlich
' id='A1'standard link/a/label And anyway, when you click on a label, the element it's associated with gets clicked on as well (except in Safari, IIRC), meaning that clicking on labels same effect as clicking on the element it's associated with. -- Aaron Heimlich Web Developer [EMAIL PROTECTED

Re: [jQuery] radio buttons, label and double fired functions

2007-01-11 Thread Aaron Heimlich
On 1/12/07, Aaron Heimlich [EMAIL PROTECTED] wrote: And anyway, when you click on a label, the element it's associated with gets clicked on as well (except in Safari, IIRC), meaning that clicking on labels same effect as clicking on the element it's associated with. Correction: when you

Re: [jQuery] jQuery v1.1 Performance Results

2007-01-11 Thread Aaron Heimlich
in Quirks Mode. Now I really don't know, but does the rendering mode also effect DOM scripting? If it does, this is certainly the first I've ever heard of it. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-10 Thread Aaron Heimlich
pointing to their personal website to pointing to their entry in the contact list (which has a link to their personal website, among other things). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss

Re: [jQuery] SWFObject Embed

2007-01-10 Thread Aaron Heimlich
that createCDE() is a member of showCDE: function() { this.editor.write(CDE); } -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Visual jQuery Redux

2007-01-07 Thread Aaron Heimlich
) too, but with a much less helpful error message. Strangely, the (very cool) effect doesn't seem to be affected by this at all. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com On 1/7/07, Yehuda Katz [EMAIL PROTECTED] wrote: Hey guys, I've been listening to all

Re: [jQuery] break in $.each

2007-01-05 Thread Aaron Heimlich
On 1/5/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Thats intersting. Could you please file this as a bug report (component docs)? Thanks. Done! http://jquery.com/dev/bugs/bug/754/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] break in $.each

2007-01-04 Thread Aaron Heimlich
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Wildcards

2007-01-03 Thread Aaron Heimlich
/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] properly unbinding events will give u $5 if you can figure it out

2007-01-03 Thread Aaron Heimlich
-will-give-u-%245-if-you-can-figure-it-out-tf2916367.html#a8150223 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

Re: [jQuery] Please wait.. tutorial

2007-01-01 Thread Aaron Heimlich
://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Having an issue accessing a node.

2006-12-30 Thread Aaron Heimlich
in the id attribute, and using them can lead to the kinds of issues you are having. [1] http://www.w3.org/TR/html4/interact/forms.html#adef-name-INPUT [2] http://www.w3.org/TR/html4/types.html#type-cdata [3] http://www.php.net/manual/en/faq.html.php#faq.html.arrays -- Aaron Heimlich Web Developer

Re: [jQuery] jQuery Roadmap

2006-12-28 Thread Aaron Heimlich
if there was a documented roadmap anywhere for future releases? Gerry ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] jQuery Roadmap

2006-12-28 Thread Aaron Heimlich
-- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Duplicating Events in a New Object

2006-12-28 Thread Aaron Heimlich
, organized by event type), so you should copy that as well. element.onevent type is actually a reference to jQuery.event.handle, which takes care of calling the appropriate event handlers at the appropriate times. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

Re: [jQuery] Plugin for UI blocking - an alternative to sync ajax

2006-12-27 Thread Aaron Heimlich
actually *freezes* (as in it registers as Not Responding in the Windows Task Manager) during syncronous AJAX. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com ___ jQuery mailing list discuss@jquery.com http://jquery.com

Re: [jQuery] Plugin Authoring: Custom Alias

2006-12-26 Thread Aaron Heimlich
I made a few minor spelling and grammar changes, but otherwise it's good. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com On 12/26/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, just added the Custom Alias section to the plugin authoring guide. If you

Re: [jQuery] Another XML / .get / iterator question

2006-12-22 Thread Aaron Heimlich
of character escaping mechanism. So: $(com.syndic.data.metadata.TagEntity, xml) would search for all elements that have all of these class names and $(com\.syndic\.data\.metadata\.TagEntity, xml) would search for all com.syndic.data.metadata.TagEntity elements -- Aaron Heimlich Web Developer [EMAIL

  1   2   >