[jQuery] tabs plugin with ajax support and callbacks

2007-02-11 Thread Daniel McBrearty
() { alert( 'done'); } } ); but the callback function is never actually called. any ideas why? thanks Daniel -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131

Re: [jQuery] tabs plugin with ajax support and callbacks

2007-02-11 Thread Daniel McBrearty
thanks! that works now. On 2/11/07, Klaus Hartl [EMAIL PROTECTED] wrote: Daniel McBrearty schrieb: hi I've been using the tabs plugin for a while, I just updated to use the new ajax support. Works nice. Now I want to add a callback whenever a tab is updated: $(.tabs).tabs

[jQuery] Fwd: can't get accordion to work

2007-01-18 Thread Daniel McBrearty
duh ... there was a dumb li left in there. However, that wasn't the problem - the source validates, but no accordion. anyone have any ideas what I might check? -- Forwarded message -- From: Daniel McBrearty [EMAIL PROTECTED] Date: Jan 17, 2007 11:52 PM Subject: Re: can't get

Re: [jQuery] can't get accordion to work

2007-01-18 Thread Daniel McBrearty
, Daniel McBrearty [EMAIL PROTECTED] wrote: duh ... there was a dumb li left in there. However, that wasn't the problem - the source validates, but no accordion. anyone have any ideas what I might check? -- Forwarded message -- From: Daniel McBrearty [EMAIL PROTECTED] Date: Jan

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

2007-01-17 Thread Daniel McBrearty
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 ___ jQuery

[jQuery] can't get accordion to work

2007-01-17 Thread Daniel McBrearty
Ubuntu. -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] can't get accordion to work

2007-01-17 Thread Daniel McBrearty
method var plugin = $.fn.Accordion = function(settings) { alert(or here); // so does this ... yet still no accordian ... On 1/17/07, Daniel McBrearty [EMAIL PROTECTED] wrote: hi, I am trying to get this to fire, but no joy ... My code is very similar to the example

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

2007-01-16 Thread Daniel McBrearty
].focus(); }); There isn't a setAttribute method on a jQuery object, and I assume you want the DOM focus() method on #userresponse. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Daniel McBrearty email

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

2007-01-16 Thread Daniel McBrearty
http://jquery.com/discuss/ -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com

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

2007-01-15 Thread Daniel McBrearty
this. Is there anywhere where this is explained? thanks Daniel On 1/15/07, Daniel McBrearty [EMAIL PROTECTED] wrote: sorry ... not the smartest question. of course, one returns the element, one returns the jquery object. What I needed was $('#id').attr( { autocomplete : off } ); I still

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

2007-01-15 Thread Daniel McBrearty
/15/07, Daniel McBrearty [EMAIL PROTECTED] wrote: I'm changing some old js I had to use jQuery. I used to have a function like this (to select a certain text input on a form and automatically focus on it) ... : window.onload = function() { self.focus(); document.getElementById

[jQuery] [jquery] what if the button wasn't there when the page loaded?

2007-01-13 Thread Daniel McBrearty
the button didn't happen until after the doc loaded ... any ideas? -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 ___ jQuery mailing list discuss@jquery.com http://jquery.com

Re: [jQuery] [jquery] what if the button wasn't there when the page loaded?

2007-01-13 Thread Daniel McBrearty
() { ... }; }); doesn't work because the button didn't happen until after the doc loaded ... any ideas? -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 -- Daniel McBrearty email : danielmcbrearty at gmail.com

Re: [jQuery] [jquery] what if the button wasn't there when the page loaded?

2007-01-13 Thread Daniel McBrearty
a button, a link or whatever ... how can you load an html file into it? sorry if this is a dumb q ... but this completely doesn't make sense to me. If I failed to R some basic bit of TFM I'd be glad of a pointer ... thanks again. -- Daniel McBrearty email : danielmcbrearty at gmail.com

Re: [jQuery] [jquery] what if the button wasn't there when the page loaded?

2007-01-13 Thread Daniel McBrearty
directly for which the docs say: ahah. silly me. I was looking under events, didn't see the one under Ajax ... http://docs.jquery.com/Events Hope this helps. it does, lots. Thanks! -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer

Re: [jQuery] noob q - using $().html

2007-01-04 Thread Daniel McBrearty
OK in the click method, I will use it in a server call and then use it to set the html. one step at a time though ... -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 ___ jQuery

Re: [jQuery] noob q - using $().html

2007-01-04 Thread Daniel McBrearty
and yes, I've gone over to using a button type, and will likely cut out the form tags too. thanks for that suggestion Doug. -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131

Re: [jQuery] noob q - using $().html

2007-01-04 Thread Daniel McBrearty
cleaner. Thanks. I learned a few things :-) On 1/4/07, Daniel McBrearty [EMAIL PROTECTED] wrote: and yes, I've gone over to using a button type, and will likely cut out the form tags too. thanks for that suggestion Doug. -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com

[jQuery] noob q - using $().html

2007-01-03 Thread Daniel McBrearty
? thanks. the lib looks nice and clean BTW. Daniel -- Daniel McBrearty email : danielmcbrearty at gmail.com www.engoi.com : the multi - language vocab trainer BTW : 0873928131 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] noob q - using $().html

2007-01-03 Thread Daniel McBrearty
PM, Daniel McBrearty wrote: Hi Just getting into using js to do things. I'm just experimenting right now. Here is my example code: p id=member_info/p script type=text/javascript function findMember(form){ $(#member_info).html(form.username.value); } /script form name

Re: [jQuery] noob q - using $().html

2007-01-03 Thread Daniel McBrearty
the value out of the form? this seems to be the button itself. I also tried something like var username = $(#username).val(); to try to select the text box directly and get the value, but no joy either. thanks again ... gonna sleep now :-) -- Daniel McBrearty email : danielmcbrearty at gmail.com