Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Created March 1, 2014 04:13
Show Gist options
  • Select an option

  • Save leonguyen/9285045 to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/9285045 to your computer and use it in GitHub Desktop.
ad_user frm_js
<link href="/javascripts/chosen/chosen.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/javascripts/chosen/chosen.jquery.js"></script>
<script type="text/javascript">
$(".chosen-select").chosen({});
function save(value){
if($('#frm').parsley('validate')){
if(value) document.getElementById('hdSave').value = value;
$('#frm').submit();
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment