javascript – iframe – Vložení vlastního textu do iframe

Vloží text do iframe před vlastním zobrazením obsahu. function archivace(typ, url) {        var archivace_ram = document.getElementById(„archivace-ram“);        var ram_obsah = archivace_ram.contentWindow || archivace_ram.contentDocument.document || archivace_ram.contentDocument;        ram_obsah.document.open();        ram_obsah.document.write(„Probíhá zpracování archivace upomínek “ + typ + „…“);        ram_obsah.document.close();        archivace_ram.src =…

javascript – getElementsByName – příklad

   var x = document.getElementsByName(„objednat“);for (var i = 0; i < x.length; i++) {    if (x[i].type === „checkbox“) {        x[i].checked = true;    }}  

slick – Změna barvy a fontu šipek

  slick-theme.css .slick-prev:before,.slick-next:before{ font-family: ‚slick‘; font-size: 30px; line-height: 1; opacity: .75; color: navy;-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;} http://kenwheeler.github.io/slick/