I'm using the Razor view engine with MVC3 RC1 and Razor, and running through the NerdDinner tutorial with it.
I have a partial view that contains some markup followed by this snippet of Javascript:
<script type="text/javascript">
$(document).ready(function () {
$("#Address").blur(function (evt) {
$("#Latitude").val("");
$("#Longitude").val("");
var address = jQuery.trim($("#Address").val());
if (address.length < 1)
return;
FindAddressOnMap(address);
});
});
</script>
I get a Parser error on the "if (address.length < 1)": "Tag is missing a name. All tags must contain a valid tag name after the '<' character".
I've tried using <text></text> around the block of code, but I still get the same error. Since there isn't much official documentation available yet for Razor, I'm hoping someone will be able to tell me what I'm doing wrong and how to fix it.
if (!address.length) return;– Nick Craver♦ Nov 10 '10 at 14:31