Welcome Guest, Not a member yet? Register   Sign In
redirect funtion in codeigniter
#1

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
Reply
#2

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]
});
Reply




Theme © iAndrew 2016 - Forum software by © MyBB