以下に示すように、動的に作成された要素をクリックすると、他の要素の上に表示されるようにしようとしています。
$("#clicks").on('click', '[id^=pin]', function (e) {
for ($i = 0; $i <= $("#clicks").children('.pin').length;$i++){
if ('pin' + $i == this.id) {
$(this).css({ 'z-index': '9999' });
} else {
//How to set reset the z-index of other elements?
}
}
})