I have a ViewModel composed of 3 models. I also have a jquery script where I make a reference to a property, but this property appears in more than 1 model.
<script type="text/javascript"> $document.ready(function () { var items = "<option value='0'>Select</option>"; $('#DistrictID').html(items); }); </script> How can I reference that DistrictID belongs to a specific model?
like -
$('#SpecificModel.DistrictID').html(items);