Skip to content
Advertisement

how to pass $(this).data() in ajax request

i need to pass $(this).data into success func in ajax. here is my code

JavaScript

But $(this).addClass('wishlist-comp-saved'); is not working inside success: function(data) {}

Advertisement

Answer

$(this) will change context when called. When inside of the success: function (data), $(this) is not the same as it was inside of whatever is calling this $.ajax() request.

For your issue, you simply have to set $(this) as a variable before your $.ajax() request, and reference it in the success: function():

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement