Changing the mouse cursor on an iframe
css, html
Solution
If you have access to the CSS of iframe src. Add -
a{ cursor: default; } //in iframe src CSS
if not you can do this with jquery if the iframe is in the same domain -
$("#iframe").contents().find("a").css('cursor', 'default');
EDIT: If it is facebook like button then check this facebook developer portal, it gives you options to style its components - http://developers.facebook.com/docs/reference/plugins/like/
Problem
I want to cancel the mouse cursor from hand to default (where that white arrow appears instead). I have a simple iframe..but I think that there is a link inside the iframe that causes the cursor to change to pointer/hand.. how do I change that behavior? This doesnt work: ``` iframe{ cursor:default; } ```