My question may be simple, but I can't figure out exactly how to do this.
I want to add one text box in my form to accept a mobile number using "Twitter Bootstrap". I want that text box to look like the one Google provides when we fill the form to create a new user at Mobile phone, meaning it should show different country codes.
I was trying to do this with drop-down button,but didn't work for me.
Please suggest a way to do this.
Here is my code,but I did on button.
<div class="btn-group ">
<a class="btn " href="#"><img src="images/India-Flag.png">(India) +91</a>
<a class="btn dropdown-toggle" href="#" data-toggle="dropdown">
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="selected">
<a href="#"><img src="images/Spain-Flag.png">(Spain) +94</a>
</li>
<li>
<a href="#"><img src="images/United-Kingdom-Flag.png">(UK) +41</a>
</li>
<li>
<a href="#"><img src="images/United-States-Flag.png">(USA) +44</a>
</li>
</ul>
</div>