Forum Moderators: open

Message Too Old, No Replies

PNGFIX Not Working with Another Script

         

newseed

1:07 pm on Jun 12, 2009 (gmt 0)

10+ Year Member



I have an issue with the IE6 png fix not working with the tab js.

Here's the test page: <here it is not>

I think it has something to do with the onload function but then I don't know js well enough to troubleshoot issues like these.

Here's the pngfix script code:

var supersleight = function() {
var root = false;
var applyPositioning = true;
// Path to a transparent GIF image
var shim = 'door-protector/pc/scripts/pngfix/x.gif';
// RegExp to match above GIF image name
var shim_pattern = /x\.gif$/i;
var fnLoadPngs = function() {
if (root) {
root = document.getElementById(root);
}else{
root = document;
}
for (var i = root.all.length - 1, obj = null; (obj = root.all[i]); i--) {
// background pngs
if (obj.currentStyle.backgroundImage.match(/\.png/i) !== null) {
bg_fnFixPng(obj);
}
// image elements
if (obj.tagName=='IMG' && obj.src.match(/\.png$/i) !== null){
el_fnFixPng(obj);
}
// apply position to 'active' elements
if (applyPositioning && (obj.tagName=='A' ¦¦ obj.tagName=='INPUT') && obj.style.position === ''){
obj.style.position = 'relative';
}
}
};
var bg_fnFixPng = function(obj) {
var mode = 'scale';
var bg = obj.currentStyle.backgroundImage;
var src = bg.substring(5,bg.length-2);
if (obj.currentStyle.backgroundRepeat == 'no-repeat') {
mode = 'crop';
}
obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='" + mode + "')";
obj.style.backgroundImage = 'url('+shim+')';
};
var el_fnFixPng = function(img) {
var src = img.src;
img.style.width = img.width + "px";
img.style.height = img.height + "px";
img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
img.src = shim;
};
var addLoadEvent = function(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
};
}
};
return {
init: function() {
addLoadEvent(fnLoadPngs);
},
limitTo: function(el) {
root = el;
},
run: function() {
fnLoadPngs();
}
};
}();
// limit to part of the page ... pass an ID to limitTo:
// supersleight.limitTo('header');
supersleight.init();

Here's the tab script code:


onload = function() {
var e, i = 0;
while (e = document.getElementById('tab-1').getElementsByTagName ('DIV') [i++]) {
if (e.className == 'on' ¦¦ e.className == 'off') {
e.onclick = function () {
var getEls = document.getElementsByTagName('DIV');
for (var z=0; z<getEls.length; z++) {
getEls[z].className=getEls[z].className.replace('show', 'hide');
getEls[z].className=getEls[z].className.replace('on', 'off');
}
this.className = 'on';
var max = this.getAttribute('title');
document.getElementById(max).className = "show";
}
}
}
}

I can't recall where I got the pngfix but the other script is from stu nicholls.

[edited by: DrDoc at 4:58 pm (utc) on June 19, 2009]
[edit reason] No URIs, please. See TOS and Forum Charter. [/edit]

Jesdisciple

1:52 am on Jun 14, 2009 (gmt 0)

10+ Year Member



I don't have IE - just want to note that you might be able to find where you got PNGFIX here [pngfix.com]. You might try an IE-specific forum for this if no one helps. Personally, I wouldn't help you even if I had IE because I don't want to learn an API just for that.