my last question on pointer cursors.
in Html you have a input file tag. This shows a textbox and a browse button. What I want to know is how can I display a cursor pointer when hovering over the "Browse" button?
Below is code:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});