41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
// caricamento sessione
|
|
session_start();
|
|
$fullSel=$_SESSION[fullSel];
|
|
?>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>
|
|
<?php echo $_SESSION[pTitle]; ?>
|
|
</title>
|
|
|
|
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
|
|
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
|
|
<link rel="stylesheet" href="my.css" />
|
|
<script src="my.js"></script>
|
|
<script>
|
|
$(function() {
|
|
$( "[data-role='navbar']" ).navbar();
|
|
$( "[data-role='header'], [data-role='footer']" ).toolbar();
|
|
});
|
|
// Update the contents of the toolbars
|
|
$( document ).on( "pagecontainerchange", function() {
|
|
// Each of the four pages in this demo has a data-title attribute
|
|
// which value is equal to the text of the nav button
|
|
// For example, on first page: <div data-role="page" data-title="Info">
|
|
var current = $( ".ui-page-active" ).jqmData( "title" );
|
|
// Change the heading
|
|
$( "[data-role='header'] h1" ).text( current );
|
|
// Remove active class from nav buttons
|
|
$( "[data-role='navbar'] a.ui-btn-active" ).removeClass( "ui-btn-active" );
|
|
// Add active class to current nav button
|
|
$( "[data-role='navbar'] a" ).each(function() {
|
|
if ( $( this ).text() === current ) {
|
|
$( this ).addClass( "ui-btn-active" );
|
|
}
|
|
});
|
|
});
|
|
|
|
</script>
|