skip to Main Content

Refresh data without reloading the page – Jquery ajax

I have a function for adding likes on the page blade.php <a href="/article/{{ $article->id }}?type=heart" class="comments-sub-header__item like-button"> <div class="comments-sub-header__item-icon-count"> {{ $article->like_heart }} </div> <a href="/article/{{ $article->id }}?type=finger" class="comments-sub-header__item like-button"> <div class="comments-sub-header__item-icon-count"> {{ $article->like_finger }} </div> js $(function() { $.ajaxSetup({ headers:…

VIEW QUESTION
Back To Top
Search