.accordion__item {
margin-bottom: 10px;
border: 1px solid #e5e5e5;
max-height: 46px;
transition: max-height .2s ease-out;
overflow: hidden;
}
.accordion__item.active {
max-height: 500px;
transition: max-height .5s ease-in;
}
body {
max-width: 1400px;
margin: 0 auto;
overflow-y: scroll;
}
overflow-y: hidden;
// Подпишемся на событие отпускания кнопки мыши.
map.events.add('mouseup', function (e) {
map.events.add('touchstart', function (e) {...
map.events.add('touchmove', function (e) {...
add_action( 'wp_loaded', function(){
remove_action( 'comment_form_before', 'comments_link');
} );
$("#form1").submit(function(e) {
e.preventDefault(); // avoid to execute the actual submit of the form.
var form = $(this);
$.ajax({
type: "POST",
url: '/php/code.php', //возможно тут нужен полный путь к файлу типа http://myweb.ru....
data: form.serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
});
add_action( 'post_updated', 'action_function_name_4971', 10, 3 );
function action_function_name_4971( $post_ID, $post_after, $post_before ){
// action...
}
<html>
<body>
<h1>SSI - Example 1</h1>
<p>I am the parent, and will include a child here:
<!--#include virtual="child.shtml" -->