<form id="add" action="/add" method="POST">
<input type="text" name="firstname">
<input type="text" name="lastname">
<input type="email" name="email">
<input type="submit" id="sendButton" style="display: none;" />
</form>
$(".add").click(function(){
$("#sendButton").click();
});
try {
//тут возможно проблемный код
} catch (error) {
//а тут то, что делать, когда код выше вызвал ошибку
}
@media screen and (max-width:767px) {
}
@media screen and (min-width:768px) and (max-width:991px) {
}
@media screen and (min-width:992px) and (max-width:1199px) {
}
@media screen and (min-width: 1200px) {
}
User-agent: Googlebot
Allow: /*.css*
Allow: /*.js*
Allow: /*.ttf*
Allow: /*.woff*
User-agent: Googlebot-Mobile
Allow: /*.css*
Allow: /*.js*
Allow: /*.ttf*
Allow: /*.woff*
function exampleClickToSave() {
// save content if you need
var ta = $('#ta').val();
var cautid = $('#cid').val();
var cthemeid = $('#tid').val();
//alert(ta+cautid+cthemeid);
$("#ta").val("");
if (ta != ""){
$.ajax({
url: mvmloc+"scrpt/save_page.php?cautid="+cautid+"&cthemeid="+cthemeid+"&ta="+ta,
cache: false,
success: function(html){
$(".shwcmtblckinthme").prepend(html);
}
});
}
}
$('#ta').live('onKeyDown',function(){
if( e.keyCode === 13 ) {
$("#ta").val("");
e.preventDefault();
exampleClickToSave();
}
});
function exampleClickToSave() {
// save content if you need
var ta = $('#ta').val();
var cautid = $('#cid').val();
var cthemeid = $('#tid').val();
if (ta){
$.ajax({
url: mvmloc+"scrpt/save_page.php?cautid="+cautid+"&cthemeid="+cthemeid+"&ta="+ta,
cache: false,
success: function(html){
$(".shwcmtblckinthme").prepend(html);
$("#ta").val("");
}
});
}
}
проверку лучше так делать $(document).ready(function () {
$('.box').hover(function () {
var obj = $(this);
obj.addClass('active');
setTimeout(function () {
obj.removeClass('active');
}, 500)
});
});