1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
$(document).ready(
function(){
$('#button_c').click(function(){
var ca = $("#cmd").val();
var cb = $("#user_id").val();
var cc = $("#comment_text").val();
var cd = $("#message_id").val();
//valeur a récupérer et a rajouter après posting_comment_
$.post("{url_main}mur/posts_comment.php?cmd="+ca+"&user_id="+cb+"&comment_text="+cc+"&message_id="+cd,
{
}, function(response){
$('#emailInfo_comment_').fadeOut();
$('#posting_comment_').html(unescape(response));
$('#posting_comment_').fadeIn();
$('#comment_text').val('');
jQuery(function($){ $("#comment_text").Watermark("Message envoy\351 avec succ\350s","green"); });
}
);
}); |
Partager