web-apps/vendor/requirejs/tests/domReady/two.js

9 lines
233 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define({
addToDom: function () {
var div = document.createElement('div');
div.id = 'two';
div.setAttribute('data-name', 'two');
document.getElementsByTagName('body')[0].appendChild(div);
}
});