Re: [jQuery] onclick - toggle the creation of a TR?

2007-02-15 Thread bdee
i am sorry - but i have been looking at this code for a while and i cant figure what exactly it is doing (sorry i'm a noob). could you possibly break it down and explain whats going on in each step? Chris Domigan wrote: .next() only gets siblings, so you won't be able to select the new td as

Re: [jQuery] onclick - toggle the creation of a TR?

2007-02-15 Thread bdee
row. Why not create the (empty) description line when the table is created, then hiding it: $('.description').hide(); Then next() will do what you want: $(this).next('.description').load(...).toggle(); Danny bdee wrote: and up above in the head of my document i have

[jQuery] onclick - toggle the creation of a TR?

2007-02-14 Thread bdee
i have a page which lists in a table, information about movies. each row displays the movie title, release date, running time... what i would like to have happen is when a row is clicked, i want to add a row beneath the clicked row which will display the movie description and a thumbnail image

Re: [jQuery] interface autocomplete wont work in IE?

2007-02-13 Thread bdee
any luck with this - i still have been unable to get it to work. Charles Capps wrote: bdee wrote: I have been playing with the autocomplete feature of the interface plugin and i have it working nicely in firefox but for some reason it doesnt work in IE. how can i get it to work in IE

[jQuery] interface autocomplete wont work in IE?

2007-02-12 Thread bdee
I have been playing with the autocomplete feature of the interface plugin and i have it working nicely in firefox but for some reason it doesnt work in IE. how can i get it to work in IE? see my site here: http://bdee.no-ip.com:9000/asp/index.asp http://bdee.no-ip.com:9000/asp/index.asp and

Re: [jQuery] interface autocomplete wont work in IE?

2007-02-12 Thread bdee
. (I typed Fam and then moused over the list.) Also try using the unpacked versions so Firebug can show source lines for the errors. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bdee Sent: Monday, February 12, 2007 2:22 PM To: discuss@jquery.com

Re: [jQuery] interface plugin autocomplete always starts with a full query

2007-02-11 Thread bdee
anyone??? bdee wrote: anyone?? why doesnt this work in IE - only seems to work in firefox? -- View this message in context: http://www.nabble.com/interface-plugin-autocomplete-always-starts-with-a-full-query-tf3202858.html#a8911751 Sent from the JQuery mailing list archive

Re: [jQuery] interface plugin autocomplete always starts with a full query

2007-02-10 Thread bdee
anyone?? why doesnt this work in IE - only seems to work in firefox? -- View this message in context: http://www.nabble.com/interface-plugin-autocomplete-always-starts-with-a-full-query-tf3202858.html#a8902892 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] interface plugin autocomplete always starts with a full query

2007-02-09 Thread bdee
i am relatively new to jquery and i am trying to get the autocomplete feature from the interface plugin to work for my movielist site. the site just lists the movies i have from an access database on my server. i have the autocomplete feature working but not exactly the way it should. If i

Re: [jQuery] interface plugin autocomplete always starts with a full query

2007-02-09 Thread bdee
I guess this is what i don't really understand: so it seems like every time i enter a character into the search feild it goes and calls my autocomplete_Page.asp. so that autocomplete_page.asp should take the value entered into the search field and run the query against the database and return

Re: [jQuery] interface plugin autocomplete always starts with a full query

2007-02-09 Thread bdee
ok that did the trick - but what is weird is that it seems to work nicely in firefox but it does nto work at all in internet explorer. what is causing that? Stefan Petre wrote: bdee wrote: i am relatively new to jquery and i am trying to get the autocomplete feature from the interface

[jQuery] why doesnt .toggle(slow) work for a tr in firefox 2.0?

2007-01-23 Thread bdee
i am new to jquery and i am having a little trouble. I have a site that lists my movies and some details about them in a table. each row in the table contains title, year running time ant a link to a trailer if available. beneath each row is a row (that spans across all 4 columns) which

Re: [jQuery] why doesnt .toggle(slow) work for a tr in firefox 2.0?

2007-01-23 Thread bdee
ah ha! thank you this was driving me nuts. Brandon Aaron wrote: This is an ongoing issue. http://jquery.com/dev/bugs/bug/24/ So far no one has come up with a workable solution. -- Brandon Aaron On 1/23/07, bdee [EMAIL PROTECTED] wrote: i am new to jquery and i am having