Click ad to display download link

Status
Not open for further replies.
2 comments
You can do with jQuery I guess.

Place a div called "mask" above the link, with position absolute, then with jQuery:

Code:
$('.mask').click(function() {
      $(this).remove();
});

I think with this you can walk with your own steps ;)
 
Status
Not open for further replies.
Back
Top