This is probably really easy, but I\'ve never done it before. How do you change your cursor to the finger (like for clicking on links) instead of the regular pointer?
It is very straight forward
HTML
Another button
jQuery
$(document).ready(function(){ $('.button').css( 'cursor', 'pointer' ); // for old IE browsers $('.button').css( 'cursor', 'hand' ); });
Check it out on JSfiddle