J'essaie d'ouvrir une nouvelle fenêtre à partir de javascript mais rien n'est inséré dans le html :
var callScriptText = $('#callScriptText').html();
var url = '/Action/CallScript/?callScript=';
// Open the current call script in a new window
var openWindow = window.open(url, 'callScriptPopup', 'width = 500, height = 500');
$(openWindow).html(callScriptText);
Quelqu'un sait-il pourquoi ?