chuckpearson
03-28-2008, 10:51 PM
1) Script Title: Virtual Pagination Script
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/virtualpagination.htm
3) Describe problem: when the page loads in IE 7, I get a res://ieframe.dll/dnserror and you can't get to the page. if i refresh 5 times, it shows up. i am using some mootools on my site, and if i remove them, this script seems to work fine. there's a conflict i believe. any idea why/where? if you're interested, here's the JS for moo
window.addEvent('domready', function() {
var myFunction = function(){
var div = $('hiddenDiv').setStyles({
display:'block',
opacity: 0
});
new Fx.Style(div, 'opacity', {duration: 1500}).start(0, 1);
};
/* Hover Tips 2 (compare page) */
var Tips2 = new Tips($$('.Tips2'), {
initialize:function(){
this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
},
onShow: function(toolTip) {
this.fx.start(1);
},
onHide: function(toolTip) {
this.fx.start(0);
}
});
myFunction();//<- this does it all
}); // END window.addEvent('domready', function()
Can someone tell me what's going on between these two scripts? I'm pulling my hair out. They both are very important to my site and I've spent a long time working on them both.
Thanks.
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/virtualpagination.htm
3) Describe problem: when the page loads in IE 7, I get a res://ieframe.dll/dnserror and you can't get to the page. if i refresh 5 times, it shows up. i am using some mootools on my site, and if i remove them, this script seems to work fine. there's a conflict i believe. any idea why/where? if you're interested, here's the JS for moo
window.addEvent('domready', function() {
var myFunction = function(){
var div = $('hiddenDiv').setStyles({
display:'block',
opacity: 0
});
new Fx.Style(div, 'opacity', {duration: 1500}).start(0, 1);
};
/* Hover Tips 2 (compare page) */
var Tips2 = new Tips($$('.Tips2'), {
initialize:function(){
this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
},
onShow: function(toolTip) {
this.fx.start(1);
},
onHide: function(toolTip) {
this.fx.start(0);
}
});
myFunction();//<- this does it all
}); // END window.addEvent('domready', function()
Can someone tell me what's going on between these two scripts? I'm pulling my hair out. They both are very important to my site and I've spent a long time working on them both.
Thanks.