Salut a tous,
je viens vers vous car j'ai un pti probleme.
Ma modalbox ne fonctionne pas sur ie8, le navigateur detecte une exception dans mon fichier prototype.js
elle est au niveau du try
try {
var response = new Ajax.Response(this);
if (this.options.onCreate) this.options.onCreate(response);
Ajax.Responders.dispatch('onCreate', this, response);
this.transport.open(this.method.toUpperCase(), this.url,
this.options.asynchronous);
if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);
this.transport.onreadystatechange = this.onStateChange.bind(this);
this.setRequestHeaders();
this.body = this.method == 'post' ? (this.options.postBody || params) : null;
this.transport.send(this.body);
/* Force Firefox to handle ready state 4 for synchronous requests */
if (!this.options.asynchronous && this.transport.overrideMimeType)
this.onStateChange();
}
l'exception est a ce niveau la (ligne 1245 caractère 5) catch (e) {
this.dispatchException(e);
}
Merci a tous pour votre aide