<table>
<tr>
<th><input type="text" ></th>
<th><input type="text" ></th>
<th><input type="text" ></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
</table>
var button = document.querySelectorAll('#searchsubmit');
var input = document.querySelector('#c');
for (var i = 0; i < button.length; i++) {
button[i].addEventListener('click', function() {
if (input.value !== '') {
document.getElementById('search-form').setAttribute("action","/entreprises/chercher/")
}else{
document.getElementById('search-form').setAttribute("action","/entreprises/")
}
})
}
jQuery(document).ready(function() {
var page = 2;
var post_count = jQuery('#posts').data('count');
var ajaxurl = "https://test-5.vbbn.in/wp-admin/admin-ajax.php"
jQuery('#load_more').click(function () {
var data = {
'action': 'my_action',
'page': page
};
jQuery.post(ajaxurl, data, function(response) {
jQuery('#posts').append(response);
if (post_count == page){
jQuery('#load_more').hide();
}
page++;
});
});
});