0
How can I make javascript to create an html address bar from a string? example:
string: "D://Media/Musicas/"
how I want it to stay
<div class="address_bar">
<label>
<button class="dir" value="D://">D://</button>
<button class="list">-></button>
</label>
<label>
<button class="dir" value="D://Media/">Media</button>
<button class="list">-></button>
</label>
<label>
<button class="dir" value="D://Media/Musicas/">Musicas</button>
<button class="list">-></button>
</label>
</div>
Like something similar to windows or linux explorers
Thank you, I needed a foundation to get started, if I may, I would like to implement your code to add the values of directories to the button
– João Victor
Ok. This link has information about the stackoverflow license: MIT License - How to use stack overflow codes
– tomasantunes