This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Das in den HEAD, nachdem jQuery geladen ist | |
--> | |
<% if iphone_user_agent? %> | |
<script type="text/javascript"> | |
jQuery(window).load(function() { | |
$('#hidepage').hide(); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
function gotoLocation () { | |
window.location.href = 'http://itunes......./' + document.getElementById('targetstring').value + '?partnerId=2003'; | |
} | |
</script> | |
<input type="text" name="targetstring" id="targetstring" > | |
<a href="javascript:gotoLocation()">Suchen</a> | |
</center> |