Search the Community
Showing results for tags 'iframe'.
-
Hi. I am new here and I don't know much about php.. But I'm trying to put digital clock to header. I'm using Wordpress. I found these iframe codes which look like easy to put a clock for me. <iframe src="http://free.timeanddate.com/clock/i5s4jcs4/n671/ts1" frameborder="0" width="94" height="18"></iframe> <iframe src="http://free.timeanddate.com/clock/i5s4jcs4/n9/ts1" frameborder="0" width="94" height="18"></iframe> I have to put Japan's time and Mexico's time. Is it possible to put these codes to header.php? If so, could you please teach me how? Thank you so much.
-
I have an iframe in a html or php site (tried both) and it works fine on Firefox and my mobile browsers. But Chrome behaves badly. The iframed php page contains a form and when I send it the whole iframe disapears. But it reapears when "painting it with my mouse". no cliks needed. just some mouseover/hovering. The whole iframe don't appear at once but small part of it. Therefor the "painting expirience". It is annoying because the visitor don't kmow to do this. Sorry, but i dont know how to explain this any better. the form is a domain lookup form (whois).
-
I have a php file in a iframe from where I take a form result to the parent with following jquery code. In the example there is both appendTo to a <p> and an input element. Anyway works fine on desktop browsers as far as I have tested, but not on my phone . <script> $('#order').click(function() { var free = $('#iframeid').contents().find('#free').text(); $("<span>"+free+" </span>").appendTo("#g"); $('.g').val($('.g').val() + vapaa); }); </script> <button id="order">'order domain</button> <p> <div id="wrap"> <p id="g"></p><p> <input type="text" class="g" id="inputbox" name="input" placeholder="www.example.com" width="100px"/> </div> Any other solutions? I managed only to make these. Preferable I use input text element. The span was just for a test. Thanks.
