Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('a.franchise-pin, a.franchise-favorite-add, a.franchise-close').click(function(e){
- e.preventDefault();
- var cookieAction = $(this).data('action');
- var resourceId = $(this).data('id');
- $.ajax({
- data: {action: cookieAction, id: resourceId}
- }).done(function(response){
- $('#favorites .franchise-container.favorites').html($(response).find('#favorites .franchise-container.favorites').html());
- $('#favorites').modal('show');
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement