Over a Frontpage i use a Colorbox. (Colorbox-Node Module - Drupal7) In this Box opens a Klynt Project (http://www.klynt.net/) - like a Video. To open it directly from the page view I use this script in a Block.
<script type="text/javascript">
// <![CDATA[
jQuery(document).ready(function($) {
$('.colorbox-node').triggerHandler("click");
});
// ]]>
</script>
is it possible to hook a cookie so that 'click' would be triggered only once per user?
Thanks!