javascript css without frameworks -
i want build left sidebar opens content in right div when click on link without using framework such jquery.
can point me resource this. haven't been able find decent resource in dynamic drive or google.
also, need resources build other javascript , css tools without using frameworks.
thanks in advance help.
for left opening content in right, can set left links change css of right containers can opened, like:
<a rel="leftlink" onclick="opencontent('content-2')>link 2</a> <div id="content-2" class="visibility: hidden">i second right content</div>
and js function should be:
function opencontent(el_id) { document.getelementbyid(el_id).style.visibility = "visible"; }
once again, spend less time (and consequently less money) using framework such jquery...
Comments
Post a Comment