Forum: JavaScript / DHTML / AJAX Jul 21st, 2005 |
| Replies: 5 Views: 2,446 Post a page somewhere so I can see the whole code.
I can see one problem in the script
if(id=="submenu5"){
It doesnt look like your defining the id attribute so try something like this..... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2005 |
| Replies: 5 Views: 2,446 You could also use offsetHeight instead of parseInt like so;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2005 |
| Replies: 5 Views: 2,446 This works for me in IE and Moz...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Grow Layer Animation</title>
<script type="text/javascript">
function... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2005 |
| Replies: 13 Views: 62,506 that works in IE as well
Eddie Traversa
DHTML Nirvana
http://dhtmlnirvana.com/
Spiritual Blog |
Forum: JavaScript / DHTML / AJAX Jul 19th, 2005 |
| Replies: 13 Views: 62,506 Yeah setting it via js dynamically seems to let moz read the value. Im going to file this as a regression bug though as that shouldnt be needed for offsetHeight etc...
Eddie Traversa
DHTML... |
Forum: JavaScript / DHTML / AJAX Jul 19th, 2005 |
| Replies: 13 Views: 62,506 There seems to be a bug with offset properties in moz at the moment as its returning the style value and not the offset value. However I came up with a workaround so that it displays the... |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2005 |
| Replies: 3 Views: 3,265 No your going to have problems becuase you cannot script across domains, i should have read your post more clearly as i missed that you wanted to do it across domains. Sorry about that, the solution... |
Forum: JavaScript / DHTML / AJAX Jul 11th, 2005 |
| Replies: 1 Views: 3,278 Yeah you would need to create an innerHTML script like so (not sure if the code is going to be scrambled here....
function loadFlash(theurl,width,height) {... |
Forum: JavaScript / DHTML / AJAX Jul 11th, 2005 |
| Replies: 3 Views: 3,265 Follow this tutorial;
http://dhtmlnirvana.com/content/dhtml/externalload/externalload.html
My DHTML page below also uses this technique in a slightly modified way, though you have to be pretty... |
Forum: JavaScript / DHTML / AJAX Jul 11th, 2005 |
| Replies: 12 Views: 19,849 You can do this by using the following method;
http://dhtmlnirvana.com/content/dhtml/autofit/autofitiframe.html
Eddie Traversa
DHTML
http://dhtmlnirvana.com/
Spiritual Blog |