$(document).ready(function() { $("area").focus(function() { $(this).blur(); }); }
To help explain matters, the dashed line is simply an indicator that the user placed the focus on the given element when he/she clicked on it. The above code works by using the blur method to remove the focus from the selected item after it's been has been clicked.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.