Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get the width and height of target when I click on it. event.currentTarget.width or event.currentTarget.width() (same for height) is not working. Any ideas on how to obtain the current targets width and height?

share|improve this question

1 Answer

If you want to use the jQuery methods you need to wrap the elements, e.g.:

$(event.currentTarget).width()

Otherwise you're stuck with using whatever DOM properties your browser supports, e.g..

event.currentTarget.offsetWidth
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.