Created
March 1, 2014 04:13
-
-
Save leonguyen/9285045 to your computer and use it in GitHub Desktop.
ad_user frm_js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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