I am seeing an error when trying to do some Jquery below. Any ideas what is causing the error? Appears my Jquery min file is loading properly and everything.
0x800a138f - Microsoft JScript runtime error: Object expected
Code:
<telerik:RadCodeBlock runat="server" ID="rcb1">
<script type="text/javascript">
function openPasswordRequirementsRadWindow() {
$find("<%=radWindowPasswordRequirements.ClientID %>").show();
}
function closePasswordRequirementsRadWindow() {
$find("<%=radWindowPasswordRequirements.ClientID %>").hide();
}
function numberOnly(sender, eventArgs) {
var k = eventArgs.get_keyCode()
if (!(k >= 48 && k <= 57)) {
...
Go to the complete details ...