Undefined Value Of $(this).data(value) With Jquery Click() Method
Im my Rails 5 app, I am building a dynamic menu to route users to a particular part of the site based on their location. When they click on a menu item from the home page a modal i
Solution 1:
ss_button
element on itself doesn't have any data properties. So, this
in that function which refers to <div class="ss_button">
, points to an element that doesn't have any data properties. That's why $(this).data('id')
returns undefined
.
Post a Comment for "Undefined Value Of $(this).data(value) With Jquery Click() Method"