1

I have an option to select a wireless carrier from a list - the problem is that Iphone "zooms in" when creating the selectable dropdown list similar to this:

http://winmobiletech.com/012009Browsers/IMG_0017.PNG

My code is as follows:

<div id="popup-action-sms" style="display:none" >
        <div id="sms" >
            <input type="number" id="sms-tel" placeholder="Enter phone number" />
            <select id="sms-carriers">
                <option value="" >Select Wireless Carrier</option>
                <option value="Alltel">Alltel</option>
                <option value="AT&T">AT&T</option>
                <option value="Sprint">Sprint</option>
                <option value="T-Mobile">T-Mobile</option>
                <option value="Verizon Wireless">Verizon Wireless</option>
            </select>
            <a href="javascript:void(0)" id="sms-submit">&nbsp;</a>
        </div>
    </div>

My question How can I dynamically "zoom out" back to full screen once a user has selected their carrier?

user3682157
  • 1,625
  • 8
  • 29
  • 55

1 Answers1

0
$( "#sms-carriers" ).change(function() {
     $(this).blur();
});

You can also try $(this).focusout();

Worth giving a shot :)

Ilan P
  • 1,602
  • 1
  • 8
  • 13