I mean like they have to click something before they watch the video, and i want to know how on some websites they have a popup that says "you have not clicked the ad" or something like that.. essentially i just need help with a code that when the visitor clicks submit, and they didnt do the requirements, a popup will come up saying that
Hy, For example, try t set a variable to 0, then , when the user clicks Submit, set that variable to 1. Before to display the video, check that variable, if its value is 0, display the popup, else, if it's 1, the video.
For example this your advertisement: <a href="http://hit2.me" target="_blank" id="ad">Free Traffic Exchange System</a> And there is a div for the movie: <div id="video" style="display: none;">video codes go on here..</div> Lets do it with jQuery: <script src="jQuery.js"><script> <script> $(document).ready(function(){ $("#ad").click(function(){ $("#video").show(); }); });