My question is similar to this:
How to add my own methods to HTMLElement object?
Since the answer is 'NO', I'm wondering if I can add a method to the class instead of the HTMLElement itself, like:
<SELECT class="sel_region">
<script>
$(function(){
$('.sel_region').doSomething();
});
</script>
If possible, how to achieve it?