PDA

View Full Version : i.e6 and ajax :|


Jam87
06-14-2007, 02:13 AM
Hi all,

I've recently been playing around with the prototype window ajax class, trying to build a login form popup kinda thing. So far i've got the window working fine in firefox, but under explorer the login button disappears :|

If anyone knows what the problem might be i'd be hugely grateful as this is really starting to bug me :)

code is below and url

url: http://www.thinlemon.com/projects/blutanium/

script:

function openDialog2(html) {
var effect = new PopupEffect(html, {className: "popup_effect1"});
var win = new Window({className:"alphacube", width: 200, height:null, showEffect:effect.show.bind(effect), hideEffect:effect.hide.bind(effect)})
win.getContent().update(name<b>name</b>)
win.showCenter()
}

button:

<input type="button" onClick="openDialog2(this)" value="login">

Thanks in advance for any help :)

Jam87