Maybe I'm missing something and failing at google all at that same time but how would I say similar to:
...
if ($(this:enabled)){
//some code
}
...
I know normally you'd say something like $("#someID:enabled")
but how to use with $(this)
?
$(this).is(':enabled')
, right – Housecoat