Oder so:
<script type="text/javascript">
var currentphoto = 1;
function slideshow(){
// the next picture
var photonr = currentphoto + 1;
// display the next picture
document.getElementsByTagName("img")[0].src = 'Tattoo-' + photonr + ".jpg";
currentphoto++;
}
</script>
Meine Fehler-Konsole sagt nichts aber es geht nicht.
warum??
MfG closer