$(document).ready(function() {
$('#sdoPhonenumber').popover({trigger:'manual',content:'write a review, create a keyword, invite a friend, and more.', placement:'right'});
$('#sdoPhonenumber').on('focus', function() {
$(this).popover('show');
});
$('#sdoPhonenumber').on('focusout', function() {
$(this).popover('hide');
});
});