The following is my problem. I use a IFrame to load content when clicked on a button in my navigationbar. For example, when i click on the About button, the content of the about page shows up in my IFrame. This is working fine.
My question is, when i do, is there a possibility to change browsers URL aswell instead of
http://localhost/wor...bshop/Index.php
I want
http://localhost/wor...pages/About.php
<nav> <ul> <li> <a href="Index.php">Home</a> </li> <li> <a href="#">Products</a> </li> <li> <a href="Pages/About.php" target="iframe">About</a> </li> <li> <a href="#">Contact</a> </li> <li> <a href="#">Shopping Cart</a> </li> </ul> </nav>
thanks in advance