We Recommend

Smarty PHP Template Programming And Applications Smarty PHP Template Programming And Applications
Smarty is a templating engine for PHP. Designers who are used to working with HTML files can work with Smarty templates, which are HTML files with simple tags while programmers work with the underlying PHP code. The Smarty engine brings the code and templates together. The result of all this is that designers can concentrate on designing, programmers can concentrate on programming, and they don't need to get in each others way so much.


Posted By

conspirator on 10/02/08


Tagged

javascript textmate iphone AddressBar CSS-Tricks


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

jamesming
SpinZ


Hide iPhone Address Bar Once Page is Loaded


Published in: Other 


  1. <script type="text/javascript" charset="utf-8">
  2. addEventListener('load', function() {
  3. setTimeout(hideAddressBar, 0);
  4. }, false);
  5. function hideAddressBar() {
  6. window.scrollTo(0, 1);
  7. }
  8. </script>

Report this snippet 

You need to login to post a comment.