|
(X)HTML, JavaScript, DHTML, XML, CSS Client scripting tehnologije, Dynamic HTML, Cascading Stylesheets, XML i standardi |
|
Alati teme | Način prikaza |
15. 07. 2005. | #1 |
novi član
|
Iframe promenljive visine u zavisnosti od Sadrzaja (Al da radi u Mozili)
Evo koda funkcije koja radi promenu visine:
Code: Kôd:
function adjustIFrameSize(id) { var myIframe = document.getElementById(id); if (myIframe) { if (myIframe.contentDocument && myIframe.contentDocument.body.offsetHeight) { // W3C DOM (and Mozilla) syntax myIframe.height = myIframe.contentDocument.body.offsetHeight; } else if (myIframe.Document && myIframe.Document.body.scrollHeight) { // IE DOM syntax myIframe.height = myIframe.Document.body.scrollHeight; } } } funkcija se poziva ili iz IFrejma na onload, ili iz tela stranice koja se ucitava u ifrejm isto onload U oba slucaja funkcionise na IE, ali nece na FF Mozili...kao ni Operi. Alertovanjem sam dosao do zakljucka da je "myIframe.contentDocument.body.offsetHeight" uvek 0 ima li neko resenje za Mozilu, nije mi jasno kao da mozila nemoze da sagleda promenjenu visinu. Probao sam da guglam i naisao sam na ovo pitanje na vise foruma ,al nigde resenja nema. Samo da nebudu objasnjenja zasto treba ili ne treba korisiti iframe!!!! |
16. 07. 2005. | #2 |
profesionalac
Professional
Datum učlanjenja: 21.06.2005
Poruke: 294
Hvala: 93
525 "Hvala" u 19 poruka
|
Iz nekog mog iskustva, Firefox uopšte ne prikazuje iframe kako treba. Ne prikazuje ga ni Internet explorer 6 najbolje, ali ipak ima daleko manje bagova.
|
16. 07. 2005. | #3 |
Goran Radulović
Professional
|
po mom iskustvu, izbegavajte Iframe
koristite DIV sa odgovarajucim overflow CSS atributom
__________________
Never show weakness, the only pain that matters is the pain you inflict. |
16. 07. 2005. | #4 |
Goran Pilipović
Sir Write-a-Lot
|
Nije ista funkcionalnost DIV i IFRAME (bez hard-core scripting-a)
__________________
Goran Pilipović a.k.a. Ugly Fingers Bradley f.k.a. bluesman I don't always know what I'm talking about but I know I'm right! |
16. 07. 2005. | #5 |
Goran Radulović
Professional
|
slichna je, ako je potrebna samo zbog estetskih razloga.
__________________
Never show weakness, the only pain that matters is the pain you inflict. |
17. 03. 2009. | #6 |
Domagoj Horvat
Expert
|
ovako napamet, znam da me iframe razvalio kad sam radio sa contentEditable...cini mi se da za FF treba:
Kôd:
// W3C DOM (and Mozilla) syntax myIframe.height = myIframe.contentWindow.document.body.offsetHeight;
__________________
postoje ludosti bez kojih je nemoguce ljudsko dostojanstvo |
17. 03. 2009. | #7 |
Nikola Denić
Sir Write-a-Lot
|
__________________
Do not ask yourself what the world needs. Ask yourself what makes you come alive, and then go do that. Because what the world needs is people who have come alive |
17. 03. 2009. | #8 |
Web designer
Professional
|
Off Topic: 4 years later but useful |
17. 03. 2009. | #9 |
Nikola Denić
Sir Write-a-Lot
|
Off Topic: Damn neka ga, nece da se baci
__________________
Do not ask yourself what the world needs. Ask yourself what makes you come alive, and then go do that. Because what the world needs is people who have come alive |
|
|
Slične teme | ||||
Tema | Početna poruka teme | Forum | Odgovori | Poslednja poruka |
Sistem naplate u zavisnosti od lokacije | Ekvador | e-Business | 12 | 19. 11. 2010. 11:51 |
iframe i linkovanje piratskih sadrzaja? | trazimcuruzabrak | Istine i zablude | 23 | 02. 09. 2010. 12:28 |
Redirekcija .htaccess u zavisnosti od UserAgent stringa | bokacbl | Web Hosting, web serveri i operativni sistemi | 4 | 16. 11. 2007. 19:07 |
Hackovanje i <iframe> | Djuki | Web Hosting, web serveri i operativni sistemi | 16 | 03. 07. 2007. 18:59 |
Iframe i JS | ivanhoe | (X)HTML, JavaScript, DHTML, XML, CSS | 5 | 19. 12. 2006. 22:45 |