Is it possible to create a breakpoint in a within a .html file with Visual Studio?
I get the option to create a breakpoint within a .js file but not within an .html file (even within the tag.
<html>
<body>
<p> testing</p>
<script type='javascript'>
alert('testing');
alert ('testing2');
</script>
</body>
</html>