[jQuery] Re: How can I make a td clickable?

2008-12-08 Thread Liam Potter
display:block the a and give it a height and width of the td you don't need to use jquery for everything. Kayhadrin wrote: Indeed, the click() event on the link is not enough to activate the link. :( Good catch! On Dec 8, 2:27 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Dec 7, 2008, at

[jQuery] Re: How can I make a td clickable?

2008-12-08 Thread Kayhadrin
Indeed, the click() event on the link is not enough to activate the link. :( Good catch! On Dec 8, 2:27 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Dec 7, 2008, at 9:34 AM, Kayhadrin wrote: Hi, If .menuitem is a class you use to contain each link, and .menu is the class that

[jQuery] Re: How can I make a td clickable?

2008-12-07 Thread Kayhadrin
Hi, If .menuitem is a class you use to contain each link, and .menu is the class that exactly defines a link, you could use: $('.menuitem').click(function(){ // the whole menu item can be clicked $('a.menu', this).click(); // simulate a click on the link, which should make the browser load

[jQuery] Re: How can I make a td clickable?

2008-12-07 Thread Karl Swedberg
On Dec 7, 2008, at 9:34 AM, Kayhadrin wrote: Hi, If .menuitem is a class you use to contain each link, and .menu is the class that exactly defines a link, you could use: $('.menuitem').click(function(){ // the whole menu item can be clicked $('a.menu', this).click(); // simulate a click on