mam skrypt:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#abc{
background: red;
height: 300px;
}
<script type="text/javascript">
var c = 0;
document.addEventListener("DOMContentLoaded", function(){
showtime = setInterval("animate()", 2);
}, false);
function animate(){
var abc = document.getElementById("abc");
var h = abc.offsetHeight;
if(c == 700){
clearInterval(showtime);
}
h++;
c++;
abc.style.height = h + "px";
}
Lorem ipsum dol sir amdet
objąłem ten skrypt function i dodałem ONclick dla jej wywołania
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#abc{
background: red;
height: 300px;
}
<script type="text/javascript"> function zmien()
{
var c = 0;
document.addEventListener("DOMContentLoaded", function(){
showtime = setInterval("animate()", 2);
}, false);
function animate(){
var abc = document.getElementById("abc");
var h = abc.offsetHeight;
if(c == 700){
clearInterval(showtime);
}
h++;
c++;
abc.style.height = h + "px";
}
}
Lorem ipsum dol sir amdet
<p onclick="zmien();">Kliknij aby rozwinac
</p>
niestety wtedy skrypt nie działa. Proszę o pomoc, siedzę 2 dni i nic nie przychodzi mi do głowy dlaczego w ten sposób nie mogę włączać tej funkcji