Hi all, I am trying to apply Foundation framework to an existing Tapestry project. But the JavaScript usded by Foundation seems like conflict with Tapestry JS.
Once I added the Foundataion JS file to my tml file, the eventlink does no longer work, there is no any response after cliking, and Eclipse console has no output. I believe the http://foundation.zurb.com/docs/assets/js/all.js makes some negative effect on the existing JS function Tapestry.waitForPage. The tml file eventlink code: <a t:type=*"eventlink"* t:event=*"resetPassword"* t:zone=*"editZone"* t:update=*"show"* href=*"#"*>Forgot Password</a> In browser the generated html code: <a id="eventlink" onclick="javascript:return Tapestry.waitForPage(event);" update="show" href="/portal/signin:resetpassword">Forgot Password</a> Thanks for your help! Charles