Forum Moderators: open
function no_javascript(){
//thumbnails
document.getElementById('thumbnail_1').style.display='block';
document.getElementById('thumbnail_2').style.display='block';
document.getElementById('thumbnail_3').style.display='block';
document.getElementById('thumbnail_4').style.display='block';
document.getElementById('thumbnail_5').style.display='block';
document.getElementById('thumbnail_6').style.display='block';
document.getElementById('thumbnail_7').style.display='block';
document.getElementById('thumbnail_8').style.display='block';
//big images
document.getElementById('image1').style.display="none";
document.getElementById('image2').style.display="none";
document.getElementById('image3').style.display="none";
//big images repositioning
var big_images = document.getElementById('full_images');
big_images.style.position = "fixed";
big_images.style.margin = "-245px 0 0 -350px";
big_images.style.display = "none";
big_images.style.backgroundColor = "black";
big_images.style.color = "white";
//descriptions
var description1 = document.getElementById('description_1');
var description2 = document.getElementById('description_2');
var description3 = document.getElementById('description_3');
description1.style.display = "none";
description2.style.display = "none";
description3.style.display = "none";
}
...
<head>
<script type = "text/javascript" src = "javascripts/no_script.js"></script>
<head>
...
<body onload = "no_javascript()">
...
</body>
....
.js #image1,
.js #image2,
.js #image3,
.js #full_images,
.js description_1,
.js description_2,
.js description_3 {
display: none;
}