Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Page attribute in <a>
-
Hello,
I would like to use <a> in my home page to create a more customized layout. If I use Onsen components, there’s the attribute page to navigate. But is there a way to do something similar with <a>? I mean right now I have to use something like <a onclick=“document.getElementById (‘yourNavId’).pushPage (‘yourPage.html’)”> but I would prefer to use <a page=“yourPage.html”> .
Thank you!
-
@etagrats You could always just use JS, such as:
HTML (this could be anything really):
<a id="myLink">Text</a>
JS:
document.getElementById('myLink').addEventListener('click',function(){ document.getElementById(‘yourNavId’).pushPage (‘yourPage.html’); });