<a onclick="if(window.opener) {
window.opener.location.href=this.href; self.close(); return false; }"
href="/strona,tabela.html#nowa">Tabela</a>,nowe dane
13 lut 2015
<a onclick="if(window.opener) {
window.opener.location.href=this.href; self.close(); return false; }"
href="/strona,tabela.html#nowa">Tabela</a>,nowe dane
function send(url, elem) {
let value;
let form = document.forms['form'];
if (typeof(elem)==='object') value=elem.value;
else value=document.getElementById(elem).value;
let s_value=form.elements['s'].value;
if(s_value=='szukaj' || s_value=='') {
location.href=url;
return false;
}
else {
form.action=url;
form.submit();
return false;
}
return true;
};
Wywołanie np.
var url = 'http://www.wolakorybutowa.pl'
send(url, 'pole1');
http://www.adamsuszek.pl/oferta
if(window.location.href.indexOf('oferta')!=-1) {
alert('ok')
}
<head>
<script type="text/javascript">
window.onload = function () {
document.getElementById('link').onclick = Info;
}
function Info() {
alert(window.event.type);
alert(this.getAttribute('title'));
}
</script>
</head>
<body>
<a href="#" id="link" title="Miasto Warszawa, Lublin, Chełm, Zamość">zobacz miasta z title linku</a>
</body>