Tipareste un element din pagina

<script> function doPrint(elem)  {   var mywindow = window.open(„, `PRINT`, `height=400,width=600`);   mywindow.document.write(„);   mywindow.document.write(„);   mywindow.document.write(document.getElementById(elem).innerHTML);   mywindow.document.write(„);   mywindow.document.close(); // necessary for IE >= 10   mywindow.focus(); // necessary for IE >= 10*/   mywindow.print();   mywindow.close();   return true;  } </script>

Continue Reading

jQuery Cycle

DOWNLOAD DEMO Prezentare Plugin-ul Cycle este un plugin jQuery pentru slideshow care acceptă multe tipuri diferite de efecte de tranzitie. Aceasta acceptă pause-on-hover, auto-oprire, auto-fit, înainte / după callback, declansatoare la clic si multe altele. De asemenea, suporta, dar nu necesita, plugin-ul Easing. Cum funcÅ£ionează Plugin-ul oferă o metodă numită cycle care este invocata pe […]

Continue Reading