jQuery selector to identify a div by its size
- by Anton
I have few nested DIVs at page. I want to add event only for smalest DIV which size is more than 100x100 px.
I am able to do it using conditions in code.
Is it possible to do using selector?
$('?????').click(function (e) {
}
If yes, please provide an example.