A zasto je problem sto stranica ima 3000 linija? Usporava browser?
<ul class="tabs>
<li><a class="tab1" href="#">Tab 1</a></li>
<li><a class="tab2" href="#">Tab 2</a></li>
<li><a class="tab3" href="#">Tab 3</a></li>
</ul>
<div id="tab1">Sadrzaj prvog taba</div>
<div id="tab2">Sadrzaj drugog taba</div>
<div id="tab3">Sadrzaj treceg taba</div>
ul.tabs li {
float: left;
}
#tab1, #tab2, #tab3 {
clear: left;
display: none;
}
$(document).ready(function() {
$("#tab1").show(); // ovo ce prikazati samo prvi tab, moze i preko css-a
$("ul.tabs li a.tab1").click(function() {
$("#tab1").show();
$("#tab2").hide();
$("#tab3").hide();
});
$("ul.tabs li a.tab2").click(function() {
$("#tab1").hide();
$("#tab2").show();
$("#tab3").hide();
});
$("ul.tabs li a.tab3").click(function() {
$("#tab1").hide();
$("#tab2").hide();
$("#tab3").show();
});
});
Follow along with the video below to see how to install our site as a web app on your home screen.
Napomena: this_feature_currently_requires_accessing_site_using_safari