01.
<script type=
"text/javascript"
>
02.
$(
"document"
).ready(
function
(){
03.
04.
05.
if
(document.cookie.indexOf(
'visited=true'
) == -1) {
06.
var
Oneday = 1000*10;
07.
var
expires =
new
Date
((
new
Date
()).valueOf() + Oneday);
08.
document.cookie =
"visited=true;expires="
+ expires.toUTCString();
09.
$(
'#myModal88'
).modal(
'show'
);
10.
}
11.
});
12.
</script>