onclick event in jquery ajac

Solutions on MaxInterview for onclick event in jquery ajac by the best coders in the world

showing results for - "onclick event in jquery ajac"
Maria José
06 Jun 2018
1 $('h1').click(function () {
2        $(this).css('color', 'blue')
3    });
Carla
15 Sep 2019
1$('a').click(function(){
2$.ajax({
3type: "POST",
4url: "mysimplepage.php",
5async: true,
6data: { logDownload: true, file: $(this).attr("name") }
7});
8return false;
9});
10
similar questions
queries leading to this page
onclick event in jquery ajac