mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
9 lines
216 B
HTML
9 lines
216 B
HTML
|
<input {{attrs}} name="{{name}}" type="text" class="form-control" placeholder="{{placeholder}}"/>
|
||
|
<script>
|
||
|
$(document).ready(function(){
|
||
|
$("#" + {{attrs.id}}).click(function(){
|
||
|
alert('lol')
|
||
|
});
|
||
|
};
|
||
|
</script>
|