- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
06-28-2019 11:22 AM
07-03-2019 11:35 AM
07-05-2019 02:43 AM
Hi @ShruthiJ ,
It looks like you have some event handlers that have the following line lines:
var ele = jQuery(this);
var region = ele.attr('data-region') ? ele.attr('data-region') : ele.root().attr('id');
Where ele
is equal to the current element the event was triggered on but .root()
is not a valid method in jQuery.
If you are trying to reach the parent of that element I would look at changing the line to:
var region = ele.attr('data-region') ? ele.attr('data-region') : ele.parent().attr('id');
Otherwise, I would recommend you raise a support ticket so that an engineer can help understand what you are trying to achieve here and help with providing a solution.
Copyright All Rights Reserved © 2008-2023