Hide Text(URL) for 1 min?

Jackster

New Member
I need to hid a URL for 1 min befor the viewer and see it.

Anyone know how to?

Or if they clicked a FaceBook Share botton so many time??
 

conor

New Member
You can achieve that using jquery. Just change the name of the div #test below to whatever is appropriate and paste the following code in your document.

Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#test").hide().sleep(60000).show();
});
</script>
 
Top