[jQuery] Re: HowTo: Trigger error callback in ajax request

2008-12-17 Thread Rob Wilkerson
On Dec 17, 9:57 am, MorningZ morni...@gmail.com wrote: Is it a non-200 status code I can't say it's 100% of the time, but in my code it seems to be the case Ding, ding, ding. Looks like that's it. In my PHP script, this is what I did to test... try { throw new Exception ( 'Something I

[jQuery] HowTo: Trigger error callback in ajax request

2008-12-17 Thread Rob Wilkerson
I have an ajax request being sent to a PHP script. If that script captures an error, I'd like it to echo that error and return whatever it needs to return to trigger the error callback in my ajax call. I can't seem to find what that is. Is it a non-200 status code? Simply throwing an error

[jQuery] Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
Hey all - I'm looking for/wondering whether there is a way to access an element loaded in a thickbox. I have a page that launches thickbox to load a form. I need to be able to set a click() event listener on the submit button of that form so that I can submit the form via ajax. Unfortunately,

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
On Dec 16, 3:33 pm, Ricardo Tomasi ricardob...@gmail.com wrote: Your thickbox script most certainly provides a callback function where you could add those handlers, which one are you using? Hey Ricardo - I'm using http://jquery.com/demo/thickbox/. I'll dig a little deeper. I was hoping

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 16, 1:33 pm, Rob Wilkerson [EMAIL PROTECTED] wrote: I'm trying to manually interact with the multifile plugin and, as part of that endeavor, I need to systemically access the anchor tag that provides Delete functionality. The following works great in FF (of course): $('a[href

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 20, 2007 5:02 PM, Josh Nathanson [EMAIL PROTECTED] wrote: WOW, thanks for that link to debugbar.com -- I had been searching far and wide for an IE debugger and couldn't find anything good -- that is sweet! It's no Firebug, but it's the best I've seen for IE.

[jQuery] Selector Not Working in IE7?

2007-11-16 Thread Rob Wilkerson
I'm trying to manually interact with the multifile plugin and, as part of that endeavor, I need to systemically access the anchor tag that provides Delete functionality. The following works great in FF (of course): $('a[href^=#multimulti_]') The objects are returned as expected and alert ( $

[jQuery] Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
'] ) + ' ' + '/' ); } } catch ( e ) { alert ( 'Error: ' + e.message ); } }, Any help would be much appreciated. Thanks. Rob Wilkerson

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson [EMAIL PROTECTED] wrote: I have a form that is using both the ajaxFileUpload and the MultiFile plugins. When a user selects a file for upload, the change event uploads the file via ajax for validation. If an error occurs, I need to remove the file from

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson [EMAIL PROTECTED] wrote: I have a form that is using both the ajaxFileUpload and the MultiFile plugins. When a user selects a file for upload, the change event uploads the file via ajax for validation. If an error occurs, I need to remove the file from

[jQuery] SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Rob Wilkerson
? Is there any way to avoid this (while maintaining the opacity specification)? Any thoughts would be greatly appreciated. Rob Wilkerson

[jQuery] AJaX Error

2007-05-03 Thread Rob Wilkerson
until my fingers bled, but couldn't find anything that seemed to make a difference. I'm hoping that maybe I've just been looking at it for too long and am missing the obvious. Thanks. Rob Wilkerson

[jQuery] Re: Help Modifying the Action Page of an AJaX Form

2007-04-27 Thread Rob Wilkerson
=value2myselections=value3. Has anyone else seen this? Am I missing something? Thanks. On 4/27/07, Rob Wilkerson [EMAIL PROTECTED] wrote: I have a form on a page that doesn't have a submit button, per se. Instead, there are a number of elements which, when clicked, should submit the form

[jQuery] Re: Help Modifying the Action Page of an AJaX Form

2007-04-27 Thread Rob Wilkerson
You can look at the spec here: http://www.w3.org/TR/html401/interact/forms.html Hmmm. I hadn't read the spec. I'm used to dealing with these things on the server side and never really had to think about how they were handled. PHP doesn't seem to be handling it the same way ColdFusion and,

[jQuery] Re: Help Modifying the Action Page of an AJaX Form

2007-04-27 Thread Rob Wilkerson
, Rob Wilkerson [EMAIL PROTECTED] wrote: You can look at the spec here: http://www.w3.org/TR/html401/interact/forms.html Hmmm. I hadn't read the spec. I'm used to dealing with these things on the server side and never really had to think about how they were handled. PHP doesn't seem

[jQuery] Re: Using jQuery with Ext

2007-04-02 Thread Rob Wilkerson
then return the content back to the browser. Brad On 4/1/07, Rob Wilkerson [EMAIL PROTECTED] wrote: I'm working with the latest Ext alpha and jQuery to create a paned UI and I want to load an external URI into one of those panels. I've got the layout nicely set up and I'm trying to get that URI

[jQuery] Using jQuery with Ext

2007-04-01 Thread Rob Wilkerson
I'm working with the latest Ext alpha and jQuery to create a paned UI and I want to load an external URI into one of those panels. I've got the layout nicely set up and I'm trying to get that URI to load via AJaX. There's not a lot of documentation I can find about that, so I'm winging it.