Hello,
we're trying to support Safari 5 on Windows / Mac for our product using the rad editor. I'm using some custom code to add the event Drop to the editor which will run anytime the user drag and drops something into the editor. Works great in all browsers except Safari. Any ideas?
Using Telerik build: 2009.3.1314.35
thanks
we're trying to support Safari 5 on Windows / Mac for our product using the rad editor. I'm using some custom code to add the event Drop to the editor which will run anytime the user drag and drops something into the editor. Works great in all browsers except Safari. Any ideas?
Using Telerik build: 2009.3.1314.35
var element = document.all ? editor.get_document().body : editor.get_document();
var eventHandler = "drop";
$telerik.addExternalHandler(element, eventHandler, function(e) {
setTimeout(function() {
alert("i worked");
}, 300);
});
thanks