<form id="my_form" action="helper.php" method="POST">
<input type="hidden" name="action" value="send" />
</form>
$( '#my_form' ).submit();
var t = '';
t += '<form id="my_form"....>....</form>';
$( '#body' ).append( t );
$( '#my_form' ).submit();
$( '.navbutton' ).on( 'click', function() {
$.post( '/helpers/page.php', {
page: 'contacts'
}, function( data ) {
$( '.targetdiv' ).html( data );
} );
} );
<head>
<script src="/js/head.js" type="text/javascript" />
</head>
head.load(
'https://code.jquery.com/jquery-2.2.2.min.js',
'/js/script1.js',
'/js/script2.js'
);
head.ready( function() {
// скрипты загружены, можно работать
} );
<a href="#" class="but">goto</a>
$('.but').on('click', function() {
// так
$('body').scrollTo('#target');
// или так
$('#content').scrollTo(500);
// или так
$('body').scrollTo('#post-5',{duration:'slow', offsetTop : '50'});
} );
$("#my_select :first").val();
$("#my_select :first").attr('selected', 'true');
<iframe class="target" src="http://toster.ru"></iframe>
$( '.target' ).ready( function() {
alert( 'loaded!' );
} );
// заносим объект в хранилище
localStorage.setItem( 'selected_option', '.option1' );
// считываем объект из хранилища
var option = localStorage.getItem( 'selected_option' );
// применяем к нужному
$( option ).attr( 'selected', 'selected' );
$( ".selector" ).datepicker( {
minDate: new Date( 2007, 1 - 1, 1 )
} );
<div>Общая стоимость...<span id="all_cost">0</span> руб</div>
<div>Высота:<span id="height">0</span> см</div>
<div>Ширина:<span id="width">0</span> см</div>
$( '#submit_button' ).click( function() {
$.post( 'calc.php', {
'modules_width': $( '#modules_width' ).val(),
'modules_height': $( '#modules_height' ).val(),
'color': $( '#color' ).val()
}, function( data ) {
data = JSON.parse( data );
$( '#all_cost' ).html( data.allcost );
$( '#height' ).html( data.height );
$( '#width' ).html( data.width );
}
);
} );
$width = $_POST[ 'modules_width' ];
$height = $_POST[ 'modules_height' ];
$color = $_POST[ 'color' ];
// дальше рассчитываем $allcost, $width, $height
echo json_encode( array( 'allcost' => $allcost, 'width' => $width, 'height' => $height ) );
$( window ).scroll( function() {
localStorage.setItem( 'www_mysite_com_scroll_position', $( window ).scrollTop() );
} );