[jQuery] Re: Listen for location anchor change?

2008-09-24 Thread Aaron Heimlich
e same page. > > Example: > > current location: www.something.com/ > > I click on a link and it takes me to: > > www.something.com/#someanchor > > Is there anyway to listen for this change/event with jquery? > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: missing ) after argument list error

2008-09-19 Thread Aaron Heimlich
Works fine for me (Firefox 3 on Mac OS X). What browser gave you that error? On Fri, Sep 19, 2008 at 4:13 PM, switch13 <[EMAIL PROTECTED]> wrote: > > I can't see why this wouldn't > work: > $('h1:contains("test")').parents('body').add

[jQuery] Re: Appreciation

2008-08-25 Thread Aaron Heimlich
p/comp.lang.javascript/topics -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: autocomplete plugin incompatible with jquery.ui ?

2008-08-22 Thread Aaron Heimlich
probably changed some to comply with UI conventions, but if this is the one that andrejk is using, then there should be few problems switching to ui.autocomplete. [1] http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-04 Thread Aaron Heimlich
h means that you can immediately execute an anonymous function by doing this: function($){ ... }(jQuery) However, because of a quirk in JavaScript syntax, to be able to do this properly, you need to put parentheses around the anonymous function, like this: (function($){ ... })(jQuery) -- Aaron

[jQuery] Re: jQuery upload progress bar, maybe for form plugin

2008-06-24 Thread Aaron Heimlich
ing on > > jquploader2 that will do just that. jquploader1 used a flash file also > > for the graphical UI, jquploader2 will let the developer customize > > looks and behaviours via html/Css and javascript. > > > > -- > > Alexandre Plennevaux > > LAb[au] > > > > http://www.lab-au.com > -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: Validating forms with identical input names

2008-06-24 Thread Aaron Heimlich
lement's name is in the "multi" list, then you would collect all of the values for all of the inputs with that name and run through the validation rules you have for that input name on each of those values. -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: Validating forms with identical input names

2008-06-24 Thread Aaron Heimlich
u couldn't achieve in a different way. I'm curious as to what those ways are (honestly). Example? -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: Does jquery's ajax method's identify requests as being ajaxed

2008-06-18 Thread Aaron Heimlich
each and every form? > > Thanks > -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: onRighClick method?

2008-06-18 Thread Aaron Heimlich
y? >> >> I found a ContextMenu plugin but it was last updated almost a year >> ago. >> >> Alternately, are there any other plugins out there that would offer >> ContextMenu support for right clicking? >> > > > > -- > Isaak Malik > Web Developer > -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: Select lists in 1.2.5

2008-05-22 Thread Aaron Heimlich
, > > > > Can you point us to a web-sample so we can Firebug it up? (The console is > > your friend). > > > > Best Wishes, > > > > Wil Everts > > [EMAIL PROTECTED] > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jQuery to create dynamic HTML-Content in a table

2008-04-24 Thread Aaron Heimlich
> ...the 3 links to change status to with their symbols as link > > > > > > > > You can imagine that it's a lot of code. The filesize is about 1.3MB > > > and takes ages to load (the person that "runs" the date-planer wants > > > it like that; to show up all dates and persons on ONE page). Now I > > > removed the code that makes the hover and the hidden-div with the > > > change-links and get only about 177Kbyte. > > > > > Now I ask myself if it would be possible with jQuery to manage it > > > somehow ... > > > > > Any ideas? > > > > > Thanks > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: [Validation]How to make two field check output one message?

2008-04-12 Thread Aaron Heimlich
On Sat, Apr 12, 2008 at 2:34 PM, Jacky See <[EMAIL PROTECTED]> wrote: > I have put up a page to test. > http://www.seezone.net/dev/dateValiation.html Link should be: http://www.seezone.net/dev/dateValidation.html -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Testing...not receiving mail...

2008-04-10 Thread Aaron Heimlich
On Thu, Apr 10, 2008 at 3:23 PM, <[EMAIL PROTECTED]> wrote: > This is just a test... had this been an actual... > emergency, the Attention Signal you just heard would have been followed by official information, news or instructions. -- Aaron Heimlich Web Developer [EMAIL PRO

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Aaron Heimlich
ollowing poll, that would be a big help in determining how to proceed: > > http://www.polldaddy.com/poll.aspx?p=388570 > > Thanks, > > The jQuery Team > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-11 Thread Aaron Heimlich
t;:input[name='foo[bar][baz]']", domElementForMyForm) You can read more about jQuery selectors at http://docs.jquery.com/Selectors -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-08 Thread Aaron Heimlich
function $$(selector, context){ > > return jQuery(selector.replace(/(\[|\])/g, '\\$1'), > > context) > > } > > > > $$('#contact[email]') > > > > It adds to the global namespace (so won't work with prototype for > > example, which also uses $$) but it does do trick. > > > > Thoughts? > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jquery newbie test

2008-02-04 Thread Aaron Heimlich
Your test has succeeded! On Feb 4, 2008 6:00 PM, CFMike <[EMAIL PROTECTED]> wrote: > Please ignore. I am new to the jquery list. I am just testing my access. > Thank you for your patience. > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Aaron Heimlich
call it like this without having to change any markup anywhere, > so it becomes a drop-in replacement: > > $(function() { > var options = { /* whatever */ }; > Shadowbox.init(options); > > $('a[href$=swf]').shadowbox(); > }); > > > Of co

[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Aaron Heimlich
box). It can be used with jQuery or any > > other library. I created an adapter for jQuery, and I thought that > > somebody on this list might be interested. > > > > http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/ > > > > Enjoy, > > > > Michael > > > > > > -- > Aaron Heimlich > Web Developer > [EMAIL PROTECTED] > http://aheimlich.freepgs.com > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Aaron Heimlich
ches on a media viewer application that I > coded up recently (think Thickbox). It can be used with jQuery or any > other library. I created an adapter for jQuery, and I thought that > somebody on this list might be interested. > > http://mjijackson.com/2008/01/22/shadowbox-js-media

[jQuery] Re: Performance Tuning Help

2008-01-23 Thread Aaron Heimlich
' class="summary"> class="sml">' + $('div.box:eq(' + count + ') dd p').html() + ' div>'); >count = count + 1; >}); > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: dynamic form: how to allow several inputs with same name ?

2007-12-15 Thread Aaron Heimlich
gt; > My question is: since this week info is duplicated, what should my html > markup look like so that the submited form reflects this structure ? > > > Thanks a lot for your advises, > > -- > Alexandre Plennevaux > LAb[au] > > http://www.lab-au.com -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
abit of simply assuming that all languagues I use are case-senstive. > > > Rick > > > > *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Aaron Heimlich > *Sent:* Saturday, December 15, 2007 12:48 AM > *To:* jquery-en@googlegroups.com > *

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
On Dec 14, 2007 11:33 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > $("#shadow").dropshadow is not a function > > $("$shadow").dropshadow({left:6, top:6, blur:3}); > It's dropShadow(), not dropshadow() -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
gt; > > > I tried putting the ; everywhere in the code, but > > couldn't figure it out. > > HELP! > > Rick > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Creating an empty jQuery collection

2007-12-12 Thread Aaron Heimlich
; This seems rather stupid to me. There should be a simpler way. > > I need this so that I can fill it with jQuery objects that I create > inside a loop, and then I return the entire collection. > > Thanks, > > Larry > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Need help with the value of a Macbook

2007-11-08 Thread Aaron Heimlich
On Nov 7, 2007 3:26 PM, Aaron Heimlich <[EMAIL PROTECTED]> wrote: > (I don't think you can upgrade cross-platform, but I've heard of people > talking to Customer Support about it and arranging something). > Here's more info on cross-platform CS3 upgrades: http:/

[jQuery] Re: Need help with the value of a Macbook

2007-11-07 Thread Aaron Heimlich
You're welcome. HTH On Nov 7, 2007 3:49 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > Aaron...thank you! This is exactly what I was looking for! Appreciated. > > -- > *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On >

[jQuery] Re: Need help with the value of a Macbook

2007-11-07 Thread Aaron Heimlich
ttp://www.amazon.com/Apple-MacBook-MA700LL-Notebook-SuperDrive/dp/B000GABVOS WOW! Amazon is seriously overpricing that thing; Not even Apple sells a MacBook for that much. [1] The Late 2006 Macbook uses Intel GMA950 ( http://www.intel.com/products/chipsets/gma950/); Current MacBooks (Late 20

[jQuery] Validation Plugin 1.2 ETA

2007-09-25 Thread Aaron Heimlich
Jorn, Is there an ETA on version 1.2 of your validation plugin? Thanks, Aaron -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: test

2007-09-18 Thread Aaron Heimlich
success! On 9/17/07, KushM <[EMAIL PROTECTED]> wrote: > > > test > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: [SITE SUBMISSION] Google Code

2007-09-18 Thread Aaron Heimlich
jQuery, then > that speaks volumes and the naysayers can take a hike! > > Rey... > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: use validate plugin in ajaxSubmit

2007-09-13 Thread Aaron Heimlich
On 9/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > var options = { > target:'#output1', > }; Get rid of the trailing comma after '#output1'. Other than that, I can't see anything wrong with your code. --Aaron -- Aaron He

[jQuery] Re: ajaxForm and validate question

2007-09-11 Thread Aaron Heimlich
handler that (among other things) calls ajaxSubmit(). ajaxSubmit() is where the form submission actually happens. More details: http://www.malsup.com/jquery/form/#api -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-05 Thread Aaron Heimlich
ery/form/). I've never done form handling without it, so I wouldn't know. [3] More specifically, $_POST['spam'] or $_GET['spam'] depending on how the form was submitted -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-05 Thread Aaron Heimlich
production. A name MUST NOT appear > more than once in an XML document as a value of this type; i.e., ID values > MUST uniquely identify the elements which bear them. > > [1] http://www.w3.org/TR/html401/struct/global.html#h-7.5.2 [2] http://www.w3.org/TR/REC-xml/#i

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-04 Thread Aaron Heimlich
hat you're describing, using CSS classes is more appropriate, e.g. $(".foobar") -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Trigger global event is slow in 1.1.4

2007-08-28 Thread Aaron Heimlich
gger(type, data); > > > > I think "jQuery("*")" is slow when the page contains large amount of > > elements. This makes some global events very slow ( ajaxStart with > > blockUI ). In 1.1.3.1, elements with global event are stored in an > > array. > > Any ideas? > > > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: attr({'type':'hidden'}) in IE6

2007-08-26 Thread Aaron Heimlich
, true). But I have to ask: Why would you want to do this? -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-25 Thread Aaron Heimlich
had not been an issue. > Originally it was, though, which was what brought up this issue[1] in the first place. The timer was implemented as a solution to memory leak issue (no event handlers, nothing to leak). [1] http://dev.jquery.com/ticket/991 -- Aaron Heimlich Web Develope

[jQuery] Re: Cycle Plugin Killing me

2007-08-20 Thread Aaron Heimlich
sup.com/jquery/cycle/ and appears to be the > best slide show out there. > > Here is my incredibly simple jQuery program: > > http://www.whatbird.com/wwwroot/Components/Cycle%20Demo.html > > Can anyone see what I have missed? > > Thanks > > Mitch > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-20 Thread Aaron Heimlich
On 8/20/07, Mitchell Waite <[EMAIL PROTECTED]> wrote: > > Do you have a clue as to why 100% wont work? > Put the height: 100% on and remove the height from , it should work then (at least it did for me in FF 2.0.0.6 Win XP). -- Aaron Heimlich Web Developer [EMAIL

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-19 Thread Aaron Heimlich
ere is still lag between > > each redraw. > > > > Since this method might be a good deal more bloated than the jquery > > animate function I also recommend not including it in the core, at > > least for the time being. > > > > ~Sean > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
think about the scroll bar. Neither did I until I caught it appearing and disappearing out of the corner of my eye. Thank you for finding that and giving me a solution. No problem, dude. Happy to help. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
does this, but I don't think it'll work in your case since you seem to have a bunch of wrappers that are absolutely positioned, so you may want to use an explicit value that you know will trigger the vertical scrollbar instead. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-18 Thread Aaron Heimlich
to; margin-right: auto; width: 797px; } -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Looping through data object

2007-08-13 Thread Aaron Heimlich
On 8/13/07, bleen <[EMAIL PROTECTED]> wrote: > foreach( options as option){ > do stuff > } > > If this were PHP, I'd agree with you. But the JavaScript syntax is: for(var option in options) { // option is a key in options // options[option] is a value in opt

[jQuery] Re: Detecting AJAX calls - Controlling Ajax Injection Vulnerabilities

2007-08-09 Thread Aaron Heimlich
On 8/9/07, John Resig <[EMAIL PROTECTED]> wrote: > > jQuery sends along an extra header: > X-Requested-With: > More specifically, it's: X-Requested-With: XMLHttpRequest -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Aaron Heimlich
f overhead is coming > from. > > Is it from jQuery's processing routines or for the actual DOM creation. > > > > In my experience IE6 is sluggish when trying to generate large tables on > the > > fly. (This is pre-jQuery coding as well.) > > > > -Dan > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Aaron Heimlich
] On > > > > Behalf Of Nazgulled > > Sent: Monday, August 06, 2007 11:25 AM > > To: jQuery (English) > > Subject: [jQuery] Fading element opacity problem using Interface FX!!! > > > > What's the problem? Why does A work and B doesn't? > > A:

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Aaron Heimlich
ts#animate.28params.2C_speed.2C_easing.2C_callback.29(last sentence of the third paragraph) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Good Javascript editor or IDE?

2007-08-01 Thread Aaron Heimlich
much nil as far as intellisense goes. Mainly all they do is syntax > highlighting and formatting. > > What recommendations on JavaScript editors or IDEs does anyone have? > Is there something sophisticated enough that can have intellisense > with jQuery or my own objects in externa

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Aaron Heimlich
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: good newsticker or rss ticker

2007-07-29 Thread Aaron Heimlich
ve. > > > > Thanks > > > > Mitch > > > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: " vs '

2007-07-26 Thread Aaron Heimlich
cursor').click(function() { $("#spinner").show(); }); Or $("#spincursor").click(function() { $("#spinner").show(); }); -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Toggling an objects visiblty without show and hide

2007-07-24 Thread Aaron Heimlich
en') { cheshireCat.style.visibility = 'visible'; } else { cheshireCat.style.visibility = 'hidden'; } }); [1] jQuery helps *a lot* in this regard, but it doesn't handle everything. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Toggling an objects visiblty without show and hide

2007-07-24 Thread Aaron Heimlich
as I have no knowledge of your page's structure // Find the "Change the cats visibility" link and assign a "click" event handler to it $("a.changeVis").click(function() { // Find the div that has the cat image in it and toggle the image's visibility

[jQuery] Re: Toggling an objects visiblty without show and hide

2007-07-24 Thread Aaron Heimlich
n be used mostly in the same fashion. You can iterate over it like an Array object, and you can access indexes (foo[0], foo[1], foo[2], etc.) like you can with an Array object, but that's about it. [2] http://docs.jquery.com/Core#each.28_fn_.29 [3] I believe this is it: http://groups.google.com/group/jquery-en/browse_thread/thread/d670a83c308961d3/92e29565dff28d32#92e29565dff28d32 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Toggling an objects visiblty without show and hide

2007-07-23 Thread Aaron Heimlich
e will move up. Can someone show me the best way to change (toggle) an objects "visibility" property between "hidden" and "visible" so any HTML under it will not move. Mitch -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Subclassing in JavaScript

2007-07-13 Thread Aaron Heimlich
aMethod: function() { $.logger('overwrite'); this.parent.aMethod(); } }); -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: test

2007-07-12 Thread Aaron Heimlich
You are excused :) On 7/12/07, Salvatore FUSTO <[EMAIL PROTECTED]> wrote: excuse for this test -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Subclassing in JavaScript

2007-07-11 Thread Aaron Heimlich
super methods. Maybe I'm just too used to Java class system and therefore can't see how to effectively replace those calls with something appropiate in JavaScript. -- Jörn Zaefferer http://bassistance.de -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-07-05 Thread Aaron Heimlich
y more function calls. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-07-05 Thread Aaron Heimlich
On 7/5/07, Rey Bango <[EMAIL PROTECTED]> wrote: The CSS option (http://www.sunsean.com/cssAnimate.html) doesn't run for me in IE7. It worked for me, but only once. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: What's happened to $.expr['@'] in jQuery 1.1.3?

2007-07-05 Thread Aaron Heimlich
On Jul 5, 12:01 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Aaron - you should file a ticket for this and I'll consider it. http://dev.jquery.com/ticket/1364 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: question about Firebug...

2007-07-05 Thread Aaron Heimlich
resses? * Andy Matthews *Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com <>

[jQuery] Re: What's happened to $.expr['@'] in jQuery 1.1.3?

2007-07-05 Thread Aaron Heimlich
t;[EMAIL PROTECTED]> wrote: I would like to help but you've lost me there Aaron... Is it possible to attach an "else" to the "if" statement that replaced > it[1] that checks in [EMAIL PROTECTED] On 05/07/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: > > On

[jQuery] Re: What's happened to $.expr['@'] in jQuery 1.1.3?

2007-07-05 Thread Aaron Heimlich
eceive any sort of speed up. Sorry about that guys. --John Is it possible to attach an "else" to the "if" statement that replaced it[1] that checks in [EMAIL PROTECTED] [1] http://dev.jquery.com/browser/tags/1.1.3.1/src/selector/selector.js#L345 -- Aaron Heimlich Web

[jQuery] Re: Syntax for selecting a form element named 'foo[0]'?

2007-07-03 Thread Aaron Heimlich
On 7/3/07, sprak <[EMAIL PROTECTED]> wrote: What magic am I missing to be able to grab the value? $('[EMAIL PROTECTED]"categoryID[0]"]').val(); Notice the quotes around categeoryID[0] -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread Aaron Heimlich
On 7/2/07, John Resig <[EMAIL PROTECTED]> wrote: http://code.google.com/p/jquery Returns "404 Not Found" -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: sprintf or printf for jquery?

2007-07-02 Thread Aaron Heimlich
at people have written but they're pretty meaty for my purposes. I was looking at http://www.vladdy.net/Demos/printf.html but the code is beyond me. Cheers, Rob -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

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

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: You misunderstand. It's a javascript file that you include on your page just like jQuery. It's no more "installed" than jQuery. Just fine for general public use. Well then, I stand corrected. -- Aaron Heimlich Web

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

2007-06-26 Thread Aaron Heimlich
our IE users to download and install excanvas, then more power to you. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

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

2007-06-26 Thread Aaron Heimlich
owsers are you looking for? --Erik -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

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

2007-06-26 Thread Aaron Heimlich
ming you're doing this for a public web site). Flash seems to be the best way to what you're looking for. [1] http://developer.mozilla.org/en/docs/HTML:Canvas [2] http://developer.mozilla.org/en/docs/SVG -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Overlay plugin?

2007-06-23 Thread Aaron Heimlich
er the page. > > > Sort of like a thickbox thing, but without all the other stuff. > > > Does anyone know where it is? > > > > > > Glen > > > > -- > > BrightLight Development, LLC. > > 954-775- (o) > > 954-600-2726 (c) > > [EMAIL PROTECTED] > > http://www.iambright.com > > > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Hash to array

2007-06-22 Thread Aaron Heimlich
nto "var=value,othervar=value" ? thank you for your time! Alexandre Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.476 / Base de données virus: 269.9.4/860 - Date: 21/06/2007 17:53 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jquery editor?

2007-06-21 Thread Aaron Heimlich
SDoc[2]). Unfortunately, I haven't been able to find any written documentation on them. [1] http://www.scriptdoc.org/specification.htm [2] http://jsdoc.sourceforge.net/#tagref -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jQuery("form") returns what if no element found?

2007-06-21 Thread Aaron Heimlich
Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.472 / Base de données virus: 269.9.1/857 - Date: 20/06/2007 14:18 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Ajax call -> lost event handlers

2007-06-21 Thread Aaron Heimlich
it with 1.1.3 and see how it goes. Being in a crisis is not the right time to play with nightly builds ;-) --Klaus -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: create an empty jquery object

2007-06-20 Thread Aaron Heimlich
I believe it's var $emptyObj = jQuery([]); On 6/20/07, Gordon <[EMAIL PROTECTED]> wrote: Just a quick question, is there a way to quickly create a jQuery object that contains no elements at all so you can add() them as needed later in the script? -- Aaron Heimlich Web Devel

[jQuery] Re: Lame fix but working - google toolbar takes over the div

2007-06-18 Thread Aaron Heimlich
whatever its writes ANNOYING message such as "Google can fill this field for you" (and i say : no thanks ;)) anyway i slove it with in that way lets say you have email just stick a comment within it: email and its should work hope its helps -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Aaron Heimlich
I'm trying to use getJSON to return some JSON from a PHP page. I can > > > see that the request is returning the expected response with > Firebug, > > > but the getJSON callback isn't firing? > > > > > > My PHP is simply > > > > > > > > echo "{ok:true,state:OUT-DECOMMISSIONED}"; > > > ?> > > > > > > Do a need to set a special content type before returning the JSON? > > > > > > > > > > > > > > -- > > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: JS regular expressions for matching decimal numbers

2007-06-13 Thread Aaron Heimlich
You're very welcome. Glad I could help. On 6/13/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Aaron Heimlich wrote: > Try this: > > /^(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/ Thanks, that works great. -- Jörn Zaefferer http://bassistance.de -- Aaron Heimlich

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
$("[EMAIL PROTECTED]'bam']").append(" -- pink"); is probably the best workaround. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
't be certain of that as I've never actually tried to do this. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
e my Firebug-enhanced test to jQuery 1.1. [1] http://www.learningjquery.com/2006/12/quick-tip-optimizing-dom-traversal [2] http://aheimlich.freepgs.com/tests/jquery/speed-test-firebug/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: JS regular expressions for matching decimal numbers

2007-06-12 Thread Aaron Heimlich
t; wrote: Hi, has anybody some regular expressions at hand that work in JS to match decimal numbers, eg. 100, 100.4 or 100,120.124 Thanks for sharing. -- Jörn Zaefferer http://bassistance.de -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
watch out). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
ar". That's the way it worked pre 1.1. Now, it's "get #car and check if it's a div". -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Input Selector

2007-06-06 Thread Aaron Heimlich
quot;).not("[EMAIL PROTECTED]'false']"); Does this look right? I also want to find selects that have a value of "" too. :) Would that be: $("form table").find(" tr.required [EMAIL PROTECTED]''],[EMAIL PROTECTED]''],").not(&qu

[jQuery] Re: Ext Calendar on top of jQuery

2007-06-05 Thread Aaron Heimlich
on by clicking on the > > screenshot and then click on the dropdown menu button. You will see > > that moving between months stops working after the first click. The > > sample app was built with Ext 1.0 Beta 2, but nothing has changed > > since then: http://matthew.delm

[jQuery] Re: Effect Queueing Plugin

2007-05-25 Thread Aaron Heimlich
ages doesn't > > work right on IE6. > > > > Plugin src (with a little inline documentation!) and a couple of > > examples can be had here:http://erikandcolleen.com/erik/jquery/fxQueue/ > > > > I mainly did this as an exercise for myself, so it won't hurt my > > feelings if it turns out this isn't really very useful, or if it's > > already been implemented in SVN or whatever. > > > > Is this useful to anybody? Is it worth polishing up a little more? > > > > --Erik > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Safari, Thickbox 3 and rolling over images = glitch?

2007-05-24 Thread Aaron Heimlich
ww.atkinshomebuilders.com/photo-gallery.html Does anyone have any idea why this might be happening? It works great in IE and FF for the PC as well as FF for the Mac. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Aaron Heimlich
> > > > > > What I need is some code that will ececute my animations one after the > > > > other, but which doesn't depend on all animations in the chain being > > > > triggered for the subsequent animations to play. Is there a plugin > > > > for doing this? Or is it slated as a new feature for jQuery? Or has > > > > anyone else come up with a solution to the problem? > > > > > > Sorry to keep asking this but like I said, it's getting pretty urgent. > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: callback

2007-05-21 Thread Aaron Heimlich
anonymous function should fix that issue. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Aaron Heimlich
to.com/temp/tabs.htm (Same source except different JS) Bug detail: Browser: In IE6/7 OS: Vista 32 Steps to reproduce: 1. Click on a tab (works). 2. Click back to the first tab (doesn't work) Glen -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: jquery.us

2007-05-18 Thread Aaron Heimlich
h in with google ads and spammy keyword > stuffing. But I got a hit in my referers so they must be doing > something right (even though that's so wrong). > > -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

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

2007-05-15 Thread Aaron Heimlich
stics of God: Omnipotence, Omniscience, Omnipresence, >> Spirit, Triune, Self-existent, Eternal, Immutable, Holy, Truthful, >> Loving, Just, Merciful. >> >> Trinity: There is only one God, and God has three persons: Father, >> Son, and Spirit of God. >> >> Total depravity - Humans are totally corrupt. >> >> Unconditional Election - Before God created the Universe, He has >> chosen those whom He will save. >> >> Particular Redemption - The Lord Jesus Christ died for those who trust >> in Him. >> >> Irresistible Grace - All those who were chosen will be saved at the >> appointed time(s). >> >> Perseverance of the saints - Because of God's help, those who trust in >> Him will continue for all eternity. >> >> Elements of human nature - Body and spirit. >> >> New Birth - the Spirit of God transforms those who trust in Him. >> >> Resource site: http://www.monergism.com >> >> - >> >> If you accuse me of "lying, hypocrisy, etc.," I'm not affected with >> your accusations. The Lord knows my intentions. >> >> About the atheist's "Invisible Pink Unicorn:" if she did not create >> the Universe, then it is not important to me if she exists or not. >> >> Repent, then trust in the Son of God: The Lord Jesus Christ. Please >> share this article for God's glory. >> >> >> > > -- http://cjordan.us -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

  1   2   >