Skip to content

Instantly share code, notes, and snippets.

View DanyUP's full-sized avatar

Daniele Armellini DanyUP

View GitHub Profile
@DanyUP
DanyUP / awesomplete.select.js
Last active June 2, 2016 03:09
Awesomeplete Select
(function(){
function copySelectedValue(input, select){
if(select.selectedIndex > -1){
input.value = select.options[select.selectedIndex].text;
}
}
function init() {