function next_closest() {
$currentTime = date( "H:i" );
$list = ksort( schedule() );
foreach ( $list as $key => $val ) {
if ( $currentTime < $key )
continue;
return json_encode( $val );
}
}
return json_encode( current( $list ) );
$('#content').load('pages/utilities.php')
, у вас не будет сразу же в наличие готового элемента #content с вновь загруженным содержимым. Он появится сам, но когда-то позднее, через "полсекунды", но позднее, когда вернётся ответ сервера. let myRadio = document.querySelectorAll( 'input[type=radio]' );
for ( var i = 0; i < myRadio.length; i++ )
myRadio.parentElement.className = 'radio';
let myCheckbox = document.querySelectorAll( 'input[type=checkbox]' );
for ( var i = 0; i < myCheckbox.length; i++ )
myCheckbox.parentElement.className = 'checkbox checkbox-circle';
<html>
<body>
Hello world
</body>
<script>
$.ajax( { url: 'hello.html' } )
.done( function( response ) {
var content = response.split( /<body>|</body>/ )[ 1 ];
$( 'body' ).html( content );
} )
</script>
</html>