Wie finde ich die Scrollhöhe und Scrollbreite des Iframe-Inhalts?Jquery

JQuery-Programmierung
Anonymous
 Wie finde ich die Scrollhöhe und Scrollbreite des Iframe-Inhalts?

Post by Anonymous »

Ich bin neu in dieser JQuery und habe Probleme, die Bildlaufhöhe und Bildlaufbreite des Iframes zu finden, wenn der Iframe die externe Webseite hostet.
Ich habe versucht, dem Code zu folgen, aber er funktioniert nicht und ich habe viel gesucht.

Code: Select all

$.fn.hasVerticalScrollbar = function () {
// This will return true, when the div has vertical scrollbar
return $frame[0].document.documentElement.offsetHeight() > this.height();
}
$.fn.hasHorizontalScrollbar = function () {
// This will return true, when the div has horizontal scrollbar
return $frame[0].document.documentElement.offsetWidth() > this.width();
}
Hilfe bitte.

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post