$('#example thead tr:eq(1) th').each( function (i) {
if (i > 1){
var title = $(this).text();
$(this).html( '<input type="text" placeholder="Search '+title+'" />' );
$( 'input', this ).on( 'keyup change', function () {
if ( table.column(i).search() !== this.value ) {
table
.column(i)
.search( this.value )
.draw();
}
} );
}
} );
$('#example thead tr:eq(1) th:nth-child(n+3)').each( function (i) {
// ...
});
p.clip {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<p class="clip">Магнитное поле ничтожно гасит большой круг небесной сферы,
в таком случае эксцентриситеты и наклоны орбит возрастают.</p>
$('.article__more_btn').on('click', function(){
var blockArticle = '<article class="news__article d-flex flex-nowrap">.....</article>';
$(this).before(blockArticle);
});
preg_match('~^'.preg_quote($uriPattern, '&').'$~', $this->uri)
Как быть если я хочу закрыть эту ссылку от индексации поисковиками.
INSERT IGNORE INTO dialogs (dialog_id, user_id) VALUES (1, user_1)
$('button').click(function(){
$('.overlay').fadeIn(200);
$('.modal-one').show().animate({
width: '30%',
height: 100
}).css({
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)'
}).append('Lorem ipsum dolor sit amet, consectetur adipisicing elit.');
})
$('.modal-one span, .overlay').on('click', function(){
$('.modal-one, .overlay').fadeOut(500)();
})