Skip to content

Instantly share code, notes, and snippets.

@rdallaire
Created July 31, 2014 20:26
Show Gist options
  • Select an option

  • Save rdallaire/87ea9dfd3dd03e0ed877 to your computer and use it in GitHub Desktop.

Select an option

Save rdallaire/87ea9dfd3dd03e0ed877 to your computer and use it in GitHub Desktop.
$('#search_category_select').change(function(){
$('input.search-field').focus();
});
$('#search_category_select').change(function(){
$('input.search-field').focus();
var $opt = $(this).find("option:selected");
var $span = $('<span>').addClass('tester').text($opt.text());
$('body').append($span);
$(this).width($span.width() + 30);
$('.search-field').css('padding-left', $span.width() + 60 );
$span.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment