0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'get_id'

-2

enter image description here

 var windowTelerikId = this.get_id();
c#
jquery
telerik
asked on Stack Overflow Sep 24, 2015 by Siwoku Adeola • edited Sep 24, 2015 by Rory McCrossan

1 Answer

3

first of allf 'this' is an object then please try below code

$(this).attr('id')

//or

$(this).prop('id')
answered on Stack Overflow Sep 24, 2015 by Parasmani Batra • edited Nov 25, 2015 by Madara's Ghost

User contributions licensed under CC BY-SA 3.0