•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 397,626 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,371 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 717 | Replies: 1 | Solved
•
•
Join Date: Aug 2007
Posts: 20
Reputation:
Rep Power: 0
Solved Threads: 0
Javascripters plz help
I have made a little slider below(not perfect i know)....and i have some bugs in it......
help me debug them plz
i want 'marq_box' to hide as soon as height of 'slide_box' is less than 219px. therefore i made the function hideInnerSlide(); which ofcourse is wrong that is why the script is not working.....can anyone help me with this.....plz
in my css the original height of 'silde_box' is 220px;
the javascript code is below:
for any more info about the code please ask....
but plz help......
Thanks All.......
I have made a little slider below(not perfect i know)....and i have some bugs in it......
help me debug them plz
i want 'marq_box' to hide as soon as height of 'slide_box' is less than 219px. therefore i made the function hideInnerSlide(); which ofcourse is wrong that is why the script is not working.....can anyone help me with this.....plz
in my css the original height of 'silde_box' is 220px;
the javascript code is below:
<script type="text/javascript">
var active= 1;
var height= 300;
function toggle_visible(){
if(active==0){
active = 1;
divminus();
}
else if(active==1){
active = 0;
divplus();
}
}
function divminus(){
if(height>=1){
height = height - 5;
document.getElementById('slide_box').style.height = height + "px";
hideInnerSlide();
window.setTimeout('divminus()',1);
}
else{
document.getElementById'slide_box').style.display="none";
}
}
function divplus(){
if(height <= 300){
document.getElementById('slide_box').style.display="block";
height = height + 5;
document.getElementById('slide_box').style.height = height + "px";
window.setTimeout('divplus()',1);
}
}
function hidePtr(){
shown = document.getElementById('pointer').style.visibility == "visible";
unshown= document.getElementById('pointer').style.visibility = "hidden";
if(shown){
document.getElementById('pointer').style.visibility = "hidden";
}
else if(unshown)
{
document.getElementById('pointer').style.visibility == "visible";
}
function hideInnerSlide(){
ht = document.getElementById('slide_box').style.height;
if(ht <= 219)
{
document.getElementById('marq_box').style.display="none";
divminus();
}
}
}
</script>
for any more info about the code please ask....
but plz help......
Thanks All.......
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: how to open indesign, pdf, framemaker files using java script
- Next Thread: Just Me



Threaded Mode