js:
$('#user').selectbox({
onOpen: function (inst) {
console.log("open", inst);
},
onClose: function (inst) {
console.log("close", inst);
},
onChange: function (val, inst) {
console.log(val);
},
effect: "fade"
});
html:
<select id="user">
<option><?= $user_name ?></option>
<option>
<a href="/">profile</a>
</option>
<option>
<a href="/">Exit</a>
</option>
</select>
jquery selectbox のオプションをテキストだけでなくリンクにしたいのですが、このプラグインを使ってオプション内にリンクを入れる方法 >