I am trying to change imagesource with another image.
<script type="text/javascript">
document.getElementById("imgbulb").onclick= function() {
document.getElementById("imgbulb").Src ="C:\Html\images\ bbc.png";
}
</script>
src.console.log("C:\Html\images\ bbc.png"). - recall that in JS as with many languages,` is used to escape characters. E.g\n,\t. You can use two of them or you can reverse them and use forward slashes. I.e\` or/- this is the strings covered, but there are other issues too. :)