Skip to content

Instantly share code, notes, and snippets.

@jackz3
Created April 13, 2012 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackz3/2374896 to your computer and use it in GitHub Desktop.
Save jackz3/2374896 to your computer and use it in GitHub Desktop.
javascript
$( '#restau' ).live( 'pageinit',function(event){
var SelectedOptionClass = $('option:selected').attr('class');
$('div.ui-select').addClass(SelectedOptionClass);
$('#note_utilisateur').live('change', function(){
$('div.ui-select').removeClass(SelectedOptionClass);
SelectedOptionClass = $('option:selected').attr('class');
$('div.ui-select').addClass(SelectedOptionClass);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment