Markus: Javascript statt Cookie (Werte übergeben)

Beitrag lesen

Danke Flo,

läuft so einwandfrei und genau das was ich wollte !

Da die Variable nicht immer existiert, habe ich es nun so gelöst:

function searchArtistByName(key){
    if( typeof(parent.content.mediatype) == 'string' )
    {
 parent.content.location.href="filetable.html?mediatype=" + parent.content.mediatype +"&search=Artist&value="+key;
 }else{
 parent.content.location.href="filetable.html?mediatype=Audio&search=Artist&value="+key;
}
}

Gruß & nochmals vielen Dank
Markus