Как я могу обнаружить присутствие полосы прокрутки (используя Javascript) в HTML iFrame?
Я уже пробовал:
var vHeight = 0;
if (document.all) {
if (document.documentElement) {
vHeight = document.documentElement.clientHeight;
} else {
vHeight = document.body.clientHeight
}
} else {
vHeight = window.innerHeight;
}
if (document.body.offsetHeight > vHeight) {
//when theres a scrollbar
}else{
//when theres not a scrollbar
}
И я тоже пробовал:
this.scrollLeft=1;
if (this.scrollLeft>0) {
//when theres a scrollbar
this.scrollLeft=0;
}else{
//when theres not a scrollbar
return false;
}
Безуспешно ..
Я искал javascript objets в DOM Inspector , но ничего не нашел.
Возможно ли обнаружить присутствие полосы прокрутки в iframe в javacscript?
Контент iframe поступает из того же домена.
Нет успеха до сих пор ..
альтернативный текст http://www.upvtp.com.br/file.php/1/help_key.jpg