I have a button with slide transition hyperlink.
<a href="register.html" data-transition="slide"><img src="images/enter_btn.png" width="82" height="82" /></a>
While the page slide to register.html
, in ready function, I have added a log text to check.
$(document).ready(function() {
console.log('here');
});
But above code is not printing the text. When I reload the page again, it prints the log text. Why is that?? Help me on this.
Thanks