Posts: 3
Threads: 2
Joined: Nov 2017
Reputation:
0
Hello please i need a help to as to how to stop codeigniter redirect function refresh.anytime i run my app it continuesly refresh the page without stoping
thanks in advance
Posts: 15
Threads: 0
Joined: May 2018
Reputation:
0
Redirectin perform at some ID or Class so you can use the following trick
$('#particularID').on('event like submit', function(e) {
e.preventDefault();
e.stopPropagation(); // only neccessary if something above is listening to the (default-)event too
[YOUR CODE GOES HERE]
});