javascript - Changing div using links -
javascript - Changing div using links - i got code uses links alter divs when paste these codes dreamweaver , open html file on firefox or google chrome don't work. work flawlessly on fiddle though. help appreciated. here jsfiddle. firefox google chrome css / html / jquery / demo class="snippet-code-js lang-js prettyprint-override"> $(document).ready( function () { // optional code hide divs $("div").hide(); $("#one").show(); // show chosen div, , hide others $("a").click(function (e) { e.preventdefault(); $("#" + $(this).attr("class")).show().siblings('div').hide(); }); }); class="snippet-code-css lang-css prettyprint-override"> .divstyle { height:300px; width:300px; border:1px solid #000; } .liststyle li { display:inline-block; } class="snippet-code-html lang-html prettyprin...