console.log(atob('YWxlcnQoIiBvcGVuIGpzLmpzICIp')); // alert(" open js.js ")
$(function () {
$('td').on('click', function () {
var $td = $(this),
$tr = $td.parent();
alert('row: ' + $tr.index() + ', col: ' + $td.index());
});
});