I have this code in my ajax:
$.ajax({
url : "<?php echo site_url('user/add'); ?>",
type : 'POST',
data : form_data,
success : function(msg) {
$('#bid-form-part').html(msg).effect("pulsate", { times:3 }, 2000);
}
});
It shows the html I have send via ajax. thats fine, but the effect pulsate is not working at all 😉
Any suggestion what am I doing wrong?
I want that the new content blink once or a few times, but he code must be wrong or something.
Thanks in advance.
According to Jquery API, there isn’t a function called effect, try replacing it with a few fade outs and fade ins to see if they work instead?
e.g.
its a bit long winded, but it allows you to see if it is going to work!
I would have used a comment, but apparently my rep isn’t high enough 😀