Hej,
mam taki kawałek kodu:
@Html.TextBox("one", null, new { id = "1"})
i teraz pod tym kodem mam funkcję javascript:
<script>
$(function () {
$('#1').blur(function () {
$.getJSON('/Quote/ValidateVoucher', 'id1=' + $('#1').val(), function(result) {
if (result.s == "false" || result.s == false) {
$('#1').css("color", "red");
$('#1').style.backgroundColor = "Red";
}
});
});
});
</script>
Dlaczego to nie działa?