I have the following script block displayed by the Razor view, but the string is debuggersimply ignored in Chrome; in Firebug it works as expected. alertworks fine.
<script type="text/javascript">
function provinceChanged(e) {
debugger;
var url = "/Address/ListCities";
alert(url);
}
</script>
Anyone have a suggestion why this is so?
Profk source
share