Script für bestimmte Domain (https) ausklammern
Steve0209
- javascript
Hallo,
ich hoffe ihr könnt mir helfen: ich habe den nachfolgenden Javacript Code, und würde den gerne deaktivieren, sobald eine bestimmte URL aufgerufen wird (das wäre in meinem Fall jede https-Seite).
Ist sowas zu realisieren?
Danke und viele Grüße
S.
<script type="text/javascript">
$(function () {
var COOKIE_NAME = 'thickbox-cookie';
$go = cookie(COOKIE_NAME);
if ($go == null) {
cookie(COOKIE_NAME, 'popup', { path: '/', expires: 6 });
tb_show('Gratis-Downloadbereich - Jetzt anmelden!','<?php echo $this->baseurl ?>/wmhtml/thickbox/download_area.html?height=360&width=550',null);
}
else {
}
});
</script>
Hi,
ich habe den nachfolgenden Javacript Code, und würde den gerne deaktivieren, sobald eine bestimmte URL aufgerufen wird (das wäre in meinem Fall jede https-Seite).
http://de.selfhtml.org/javascript/objekte/location.htm#protocol
MfG ChrisB
http://de.selfhtml.org/javascript/objekte/location.htm#protocol
MfG ChrisB
Wäre dann mein Anfängerversuch hier korrekt?
<script>
if (window.location.protocol == "http:" )
{
$(function () {
var COOKIE_NAME = 'thickbox-cookie';
$go = cookie(COOKIE_NAME);
if ($go == null) {
cookie(COOKIE_NAME, 'popup', { path: '/', expires: 6 });
tb_show('Gratis-Downloadbereich - Jetzt anmelden!','<?php echo $this->baseurl ?>/wmhtml/thickbox/download_area.html?height=360&width=550',null);
}
else {
}
});
}
else
{
}
</script>
Grüße
Hallo Steve0209,
... (das wäre in meinem Fall jede https-Seite).
kennst du schon http://de.selfhtml.org/javascript/objekte/location.htm#protocol
Gruß, Jürgen