Friday 29 December 2017

Js fullscreen browser





<a class="drop icon-circle" href="#!" onclick="javascript:toggleFullScreen()">
<i class="icon-size-fullscreen"></i>
</a>

Saturday 16 December 2017

Jquery get element each method


$( "li" ).each(function( index ) { console.log( index + ": " + $( this ).text() ); });