<script>
var button = document.createElement('button');
var textNode = document.createTextNode('Bana tıkla!');
button.appendChild(textNode);
button.className = 'mdl-button mdl-js-button mdl-js-ripple-effect';
componentHandler.upgradeElement(button);
document.getElementById('container').appendChild(button);
</script>

bu