Search results

  1. A

    HTML Save php variable in a hidden input

    Here is a simple methode for how to save php variable in a hidden input soyou can use later time after page load with javascript or jquery : <input type="hidden" id="my_val" value="<?php echo $variable; ?>">
  2. A

    HTML How to embed youtube video in responsive ration and full-width

    CSS : .videoWrapper { position: relative; padding-bottom: 56.25%; padding-top: 25px; height: 0; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } HTML : <div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe...
Top