bonjour je veux ajouter des boutons suivant et précédent dans mon application web or ces boutons ne sont pas liés a des pages web en fait dans mon application j'utilise un fichier .js qui gère le défilement de la page et du coup je n'arrive pas à implémenter le code pour les deux boutons

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HPS REGISTER</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="HPS REGISTER " />
<meta name="keywords"
	content="jquery, form, sliding, usability, css3, validation, javascript" />
<link rel="stylesheet" href="inc/style.css" type="text/css"
	media="screen" />
<script type="text/javascript"
	src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="js/sliding.form.js"></script>
</head>
<style>
span.reference {
	position: fixed;
	left: 5px;
	top: 5px;
	font-size: 10px;
	text-shadow: 1px 1px 1px #fff;
}
 
span.reference a {
	color: #555;
	text-decoration: none;
	text-transform: uppercase;
}
 
span.reference a:hover {
	color: #000;
}
 
h1 {
	color: #ccc;
	font-size: 40px;
	text-shadow: 5px 1px 1px #fff;
	padding: 30px;
}
</style>
<body>
<head>
<meta avec charset>
<style type="text/css">
body {
	margin: 0;
	padding: 0
}
</style>
</head>
<body>
	<img class="left" src="img/hps.png" width="150" height="100" alt=""
		title="" style="float: left; margin: 0 180px 0 30px;" />
 
</body>
 
<div id="content">
 
	<h1>HPS REGISTER</h1>
	<div id="wrapper">
		<div id="steps">
			<
			<form method="post" action="createbank">
 
 
				<fieldset class="step">
 
					<legend>Account</legend>
					<p>
						<label for="clientname">Client name<span class="requis">*</span></label>
						<input id="clientname" name="clientname" />
					</p>
					<p>
						<label for="email">Email</label> <input id="email" name="email"
							placeholder="info@hps.net" type="email" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="password">Password<span class="requis">*</span></label>
						<input id="password" name="password" type="password"
							AUTOCOMPLETE=OFF />
					</p>
 
 
				</fieldset>
				<fieldset class="step">
					<legend>Personal Details</legend>
					<p>
						<label for="name">Full Name</label> <input id="name" name="name"
							type="text" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="country">Country</label> <input id="country"
							name="country" type="text" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="phone">Phone</label> <input id="phone" name="phone"
							placeholder="e.g. +212622222222" type="tel" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="website">Website</label> <input id="website"
							name="website"
							placeholder="e.g. <a href="http://www.hps.com" target="_blank">http://www.hps.com</a>
								type="
							tel" AUTOCOMPLETE=OFF />
					</p>
				</fieldset>
 
 
 
				<fieldset class="step">
 
					<legend>client bank information</legend>
					<p>
						<label for="banktag">Bank tag <span class="requis">*</span></label>
						<input id="banktag" name="banktag" type="text" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="currency">Currency<span class="requis">*</span></label>
						<input id="currency" name="currency" type="text" AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="datesystem">Date system <span class="requis">*</span></label>
						<input id="datesystem" name="datesystem" type="text"
							AUTOCOMPLETE=OFF />
					</p>
					<p>
						<label for="bankname">Bank name<span class="requis">*</span></label>
						<input id="bankname" name="bankname" type="text" AUTOCOMPLETE=OFF />
 
					</p>
					<p>
						<label for="schemaname">Schema name <span class="requis">*</span>
						</label> <input id="schemaname" name="schemaname" type="text"
							AUTOCOMPLETE=OFF />
 
					</p>
				</fieldset>
 
 
				<fieldset class="step">
					<legend>Confirm</legend>
					<p>IF Everything in the form is correctly filled your
						registration will be made . Otherwise an error message will be
						generate .In this last step the user can confirm the submission of
						the form.</p>
 
					<p class="submit">
						<button id="registerButton" type="submit">generate</button>
 
					</p>
 
 
				</fieldset>
		</div>
 
		</form>
 
 
 
		<div id="navigation" style="display: none;">
 
			<ul>
				<li class="selected"><a href="#">Account</a></li>
				<li><a href="#">Personal Details</a></li>
				<li><a href="#">Bank information</a></li>
 
				<li><a href="#">Confirm</a></li>
 
 
 
			</ul>
 
		</div>
	</div>
 
</div>
 
</body>
</html>