Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Fixed position of container issue in IOS devices when keypad is opened

Container with position: fixed property will be collapse when keypad is opened in Ipad.

Below Javascript code is used for solution.

$("input,textarea").focus(function () {
   if (isiPhone()) {
      $('.fixedFooter').hide();
      }
      }).focusout(function () {
      if (isiPhone()) {
      $('.fixedFooter').show();
   }
});




This post first appeared on PSD-HTML-CSS-JS, please read the originial post: here

Share the post

Fixed position of container issue in IOS devices when keypad is opened

×

Subscribe to Psd-html-css-js

Get updates delivered right to your inbox!

Thank you for your subscription

×