As per screenshot below. I am pretty sure someone has done this before! =)
The circle is a bonus, would be very happy with a solution that allows highlighting of a given "div"
As per screenshot below. I am pretty sure someone has done this before! =)
The circle is a bonus, would be very happy with a solution that allows highlighting of a given "div"
5 years since the question was asked, but it may help people arriving from google
I've developed a plugin for this matter,
You can get it from: Hop on Github
Let me know your feedback.
What about using the outline CSS property?
this applies a very large outline on focused inputs with fade transition.
Example:
Look at jQuery Tool's Expose plugin. That's probably what you want.
I played off @mVChr's fiddle to highlight one box once a different button is clicked. I'm currently using this to highlight an entry field once a login button is clicked on a new site.
Modified example based on @mVChr's code
See example of the following here →
No need for a plugin. This can be accomplished with very little jQuery code, showing a blackout overlay with the selected div at a z-index above it:
According to the following HTML & CSS... just add the
expose
class to any element you want isolated on click:See example →