jQuery(document).ready(function ($) {


var id=$(".sig-list").data("id");
  
$.ajax({
		url: '/ad.php',
		type: 'post',
		dataType: 'html',
		data: { id:id},
		success: function(b) {
					
 	$(".sig-list").prepend(b)  		
		
		},
		error: function() {},
	})



	})