Ah, I see. So the reason my <a href="#"> wasn't working is because that's a relative link, and the BASE tag means it is relative to the base. This reflects a gap in my html knowledge. I'm just so used to things not having base tag. Thanks for the info.
-Chris On 11/1/05, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > It reflects the fact that Tapestry's Shell component introduces an > HTML <base> tag. The > <base> tag is necessary, and related to the support for managing > multiple folders. > > <a href="javascript:someJavascriptFunction();"> ... </a> > > works for me. > > On 11/1/05, Chris Chiappone <[EMAIL PROTECTED]> wrote: > > I ran into the same problem and someone told me to use > > <a href="javascript:void(0);"> which seemed to do the trick. Is this > > possibly a bug in 4.0? > > > > > > On 11/1/05, Patrick Casey <[EMAIL PROTECTED]> wrote: > > > > > > Have you tried the any tag? > > > > > > <span jwcid="@Any" element="a" href="ognl:getLink()"> > > > <span jwcid="@RenderBody" /> > > > </span> > > > > > > > -----Original Message----- > > > > From: Chris Norris [mailto:[EMAIL PROTECTED] > > > > Sent: Tuesday, November 01, 2005 8:52 AM > > > > To: Tapestry users > > > > Subject: anchor tags > > > > > > > > I feel like quite the noob with this question: > > > > > > > > How do I do anchor tags in Tapestry? My real goal is to have a link > that > > > > doesn't go anywhere and just calls a javascript function. This was > what I > > > > tried: > > > > <a href="#" onclick="someJavascriptFunction();">Click me!</a> > > > > > > > > The url of the page was something like this: > > > > http://localhost:8080/app?page=SomePage&service=page > > > > > > > > I would think that mousing over the link would give me something > like > > > > this: > > > > http://localhost:8080/app?page=SomePage&service=page# > > > > > > > > Instead, I got this: http://localhost:8080/# > > > > That just sends me to the home page. This is not the desired > > > > functionality. > > > > This is so basic, and I feel like I'm missing something obvious. > > > > > > > > -Chris > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > -- > > ~chris > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > -- > Howard M. Lewis Ship > Independent J2EE / Open-Source Java Consultant > Creator, Jakarta Tapestry > Creator, Jakarta HiveMind > > Professional Tapestry training, mentoring, support > and project work. http://howardlewisship.com > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
