Fri, 2014-07-25 05:26
I have a generic base target blank call in my blog. However, I want to also make a "Self" call for some functions. I have managed to work this out. But in this I can't figure out how to do it. May someone kindly let me know the solution to this problem. In my case I want the "RECENT POSTS" and "CATEGORIES" to open in the same Tab itself by using target='_self'
Here is the code where I am having the problem:
<nav id='nav'> <ul> <li><a expr:href='data:blog.homepageUrl' target='_self'>Home</a></li> <li><a href='/' target='_self'>Recent Post</a> <ul class='submenu subrecentpost'> <div id='mini-gallery'><script src='/feeds/posts/default?max-results=20&orderby=published&alt=json-in-script&callback=showrecentposts'/><div style='clear:both;'/></div> </ul> </li> <li><a href='/' target='_self'>Categories</a> <ul class='submenu subcategories'> <script src='/feeds/posts/summary?max-results=0&alt=json-in-script&callback=showLabels'/> </ul></li> <li><a href='/' target='_self'>Comments</a></li> </ul> </nav>