Reputation: 1842
I tried to use DOJO on focus out method but it is not working. I have the link to work out.
require(["dojo/on"], function(on){
on(foc, "focusout", function(e){
alert("hi");
});
});
HTML
<div id="foc" > work on focus out</div>
Upvotes: 2
Views: 3857