Re: [Proto-Scripty] Ajax CORS error message

2013-01-16 Thread Shane McCarron
. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe from this group, send email to prototype-scriptaculous+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. -- Shane

Re: [Proto-Scripty] Re: The order of iteration with Hash objects.

2011-10-06 Thread Shane McCarron
Yes. Of course. On Oct 6, 2011 10:54 AM, T.J. Crowder t...@crowdersoftware.com wrote: On Oct 5, 2:39 pm, Shane McCarron halindr...@gmail.com wrote: If the sorted order of the hash keys isn't what you want, you might also consider assigning ordinals as part of the hash key. Assuming you have

Re: [Proto-Scripty] Re: The order of iteration with Hash objects.

2011-10-05 Thread Shane McCarron
-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe from this group, send email

Re: [Proto-Scripty] Re: $ function and IE

2011-08-31 Thread Shane McCarron
...@wdstudio.com wrote: You're welcome. I gave up being surprised what IE does somewhere back in 1998. Walter On Aug 30, 2011, at 4:19 PM, Shane McCarron wrote: That's very clever. Mostly I am surprised that only IE pukes on what I assume to be a very common problem

[Proto-Scripty] $ function and IE

2011-08-30 Thread Shane McCarron
I am sure this is a FAQ... but in IE prototype (version 1.7) throws an error when there is a reference to an ID that is not on the page (e.g., $('noSuchElement)). Is there some trick or idiom to work around this? -- Shane McCarron halindr...@gmail.com -- You received this message because you

Re: [Proto-Scripty] $ function and IE

2011-08-30 Thread Shane McCarron
, not actually trying to use the return from that, then the first method is what I would advise. Walter On Aug 30, 2011, at 3:06 PM, Shane McCarron wrote: I am sure this is a FAQ... but in IE prototype (version 1.7) throws an error when there is a reference to an ID that is not on the page

Re: [Proto-Scripty] $ function and IE

2011-08-30 Thread Shane McCarron
Actually, I lied. They ALL puke. Duh. It is just that IE is more obvious about it. I guess everyone else already knew this. I am slow ;-) On Tue, Aug 30, 2011 at 3:19 PM, Shane McCarron halindr...@gmail.comwrote: That's very clever. Mostly I am surprised that only IE pukes on what I

Re: [Proto-Scripty] Aw: Re: Prototype itself throws errors in IE7

2011-08-29 Thread Shane McCarron
/prototype-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe from this group, send

[Proto-Scripty] Combo box?

2011-07-26 Thread Shane McCarron
Does anyone know of a *stable* combobox implementation that uses Prototype? -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptaculous

[Proto-Scripty] Best way to show / hide a menu

2011-07-11 Thread Shane McCarron
solution that will just handle all these edge conditions for me? Or recommend an idiom I can implement myself that will avoid the weird cases? Thanks! -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

Re: [Proto-Scripty] element is null - say what

2011-06-13 Thread Shane McCarron
-scriptaculous@googlegroups.com. To unsubscribe from this group, send email to prototype-scriptaculous+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received

[Proto-Scripty] Finding the position of a scroll bar for an element with overflow:auto

2010-11-07 Thread Shane McCarron
. Is there a way to get the scrollTop for an element? -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptacul...@googlegroups.com. To unsubscribe

Re: [Proto-Scripty] disable right click

2010-06-05 Thread Shane McCarron
...@googlegroups.comprototype-scriptaculous%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype

[Proto-Scripty] Getting the value of a form field

2010-04-30 Thread Shane McCarron
allowed to have multiple elements with the same ID and still be valid. What's the right way to do this? -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email

Re: [Proto-Scripty] Getting the value of a form field

2010-04-30 Thread Shane McCarron
(function(radio) { return radio.checked; }).value; -- Jonathan Rosenberg Founder Executive Director, Tabby's Place http://www.tabbysplace.org/ *From:* prototype-scriptaculous@googlegroups.com [mailto: prototype-scriptacul...@googlegroups.com] *On Behalf Of *Shane McCarron

Re: [Proto-Scripty] Re: The Unofficial Wiki

2010-04-08 Thread Shane McCarron
, send email to prototype-scriptaculous+unsubscr...@googlegroups.comprototype-scriptaculous%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received this message

Re: [Proto-Scripty] Re: AJAX.Request complains about 'function expected' in IE6

2010-03-18 Thread Shane McCarron
...@googlegroups.comprototype-scriptaculous%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. -- Shane McCarron halindr...@gmail.com -- You received this message because you are subscribed to the Google Groups

[Proto-Scripty] AJAX.Request complains about 'function expected' in IE6

2010-03-16 Thread Shane McCarron
I have a simple AJAX Request that I am trying to run through Prototype 1.6.0.3: var uri = 'someURI' ; new Ajax.Request(uri, { method: 'post', parameters : msg , asynchronous: true, requestHeaders: ['Accept-Encoding', ''] }) ; In IE 6 this throws