Monday 31 December 2018

html - Which "href" value should I use for JavaScript links, "#" or "javascript:void(0)"?

The following are two methods of building a link that has the sole purpose of running JavaScript code. Which is better, in terms of functionality, page load speed, validation purposes, etc.?





function myJsFunc() {
alert("myJsFunc");
}

Run JavaScript Code





or





function myJsFunc() {
alert("myJsFunc");
}

 Run JavaScript Code


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...