[jQuery] Re: clueTip send header with Ajax request

2008-11-24 Thread n8cshaw
//global: true beforeSend: function(xhr) { xhr.setRequestHeader("${apiAuthHeader_name}", "$ {apiAuthHeader_value}"); } } } On Nov 21, 9:10 am, n8cshaw <[EMAIL PROTECTED]> wrote: > Hi all. I am implementing clueTip and have it working ju

[jQuery] clueTip send header with Ajax request

2008-11-21 Thread n8cshaw
Hi all. I am implementing clueTip and have it working just fine using an Ajax call. However, when all is said and done, the Ajax call will be hitting a web service that requires a custom authentication header. I have set up my jQuery global ajax options to send the header on all requests. jQuery.

[jQuery] Re: Event Firing Twice

2008-11-06 Thread n8cshaw
JS code still has the event firing twice. On Nov 6, 11:49 am, n8cshaw <[EMAIL PROTECTED]> wrote: > ok, I stripped a bunch of stuff out and posted a simplified file. This > should make it easier to see what is going on. The event is still > firing twice. > > http://www.iaffe

[jQuery] Re: Event Firing Twice

2008-11-06 Thread n8cshaw
ok at the source code in the first link but there's > too much to look at, can you be more specific about what 's, what > selectors, and what chunk of javascript code is not doing what you > expect it to? > > that would help others help you > > On Nov 6, 10:

[jQuery] Re: Event Firing Twice

2008-11-06 Thread n8cshaw
]> wrote: > The link you provided doesn't seem to work. > > n8cshaw wrote: > > One more interesting note... if the parent div is visible (display: > > block) when the page loads, I do not see this behavior. It is only > > when the parent div is not visible (disp

[jQuery] Re: Event Firing Twice

2008-11-06 Thread n8cshaw
One more interesting note... if the parent div is visible (display: block) when the page loads, I do not see this behavior. It is only when the parent div is not visible (display: none) on page load that it happens. On Nov 6, 9:07 am, n8cshaw <[EMAIL PROTECTED]> wrote: > I am attaching

[jQuery] Event Firing Twice

2008-11-06 Thread n8cshaw
I am attaching an event to a link. The link lets the user toggle the display of a child div inside of a parent div. However, when the link is clicked, the event is run twice (div opens and then closes immediately). I have tried using .click() and .bind() and it makes no difference which one I use

[jQuery] Re: Toggle and Nested Divs

2008-11-05 Thread n8cshaw
ill love to know why this is happening if anyone has any ideas or suggestions. On Nov 5, 8:40 am, n8cshaw <[EMAIL PROTECTED]> wrote: > Thanks Ricardo. I have put the code up athttp://jsbin.com/atiza > > As for the double quotes on the Velocity call, those are evaluated on > the s

[jQuery] Re: Toggle and Nested Divs

2008-11-05 Thread n8cshaw
Thanks Ricardo. I have put the code up at http://jsbin.com/atiza As for the double quotes on the Velocity call, those are evaluated on the server prior to being sent to the client, so no worries there. I appreciate the help with this! It seems like this should be a very easy thing to do (I did t