Could someone please tell me why firefox doesn't like this section of code?
function TB_position(){
$('TB_window').set('morph', {
duration: 75
});
$('TB_window').morph({
width: TB_WIDTH + 'px',
left: (window.getScrollLeft() + (window.getWidth() - TB_WIDTH) / 2) + 'px',
top: (window.getScrollTop() + (window.getHeight() - TB_HEIGHT) / 2) + 'px'
});}
Theres got to be something small missing like a bracket or period or something that I'm missing. Thanks!
**I SOLVED MY OWN PROBLEM! one of my scripts was competing with the other. Thanks anyway!