Need JavaScript or jQuery something to change text every some seconds... with user doing anything.
Example:
\"Welcome\" changes to \"Salmat datang\" change
You may take a look at the setInterval method. For example:
window.setInterval(function() { // this will execute on every 5 seconds }, 5000);