Skip to content
Advertisement

How to reset the counter to 0 after Ajax Refresh or Submistion to database,

I have this code that sends multiple data in MySQL Database using JQuery Ajax, all works fine but when i try to refresh the page using ajax and add new record, Its populated the number of times equivalent to the last counter.

Below is my index.php page;

JavaScript

and this is my insert.php code

JavaScript

Kindly help me how I can reset the counter to 0 after Ajax refresh. Thanks.

Advertisement

Answer

put the var count ouside the $(document)

JavaScript

and in your submit function

JavaScript

and in additional, you should be using .prop instead of .attr

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