2019-12-06 18:34:19 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.14.0.css">
|
|
|
|
<link rel="stylesheet" href="jquery.seat-charts.css">
|
|
|
|
<script src="http://code.jquery.com/qunit/qunit-1.14.0.js"></script>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
|
|
<script type="text/javascript" src="jquery.seat-charts.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="koncowastrona.css">
|
|
|
|
<script type="text/javascript" src="seatchart.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<h2>Anna Kowalska</h2>
|
|
|
|
|
|
|
|
<h3>wybrane miejsce:</h3>
|
2019-12-08 00:00:52 +01:00
|
|
|
<ul id="sel-seat"></ul>
|
2019-12-06 18:34:19 +01:00
|
|
|
|
|
|
|
<button class="gotomain-button" onclick="doStronyGlownej()">Przejdź do strony głównej »</button>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function doStronyGlownej() {
|
|
|
|
window.location = "przylozlegitke.html";
|
|
|
|
}
|
2019-12-08 00:00:52 +01:00
|
|
|
|
|
|
|
//alert(localStorage.getItem('myElement')); //Przykładowa wartość
|
|
|
|
$( document ).ready(function() {
|
|
|
|
$("#sel-seat").text(localStorage.getItem('myElement'));
|
|
|
|
});
|
2019-12-06 18:34:19 +01:00
|
|
|
</script>
|
|
|
|
</html>
|