2011-08-07 16:59:50 +00:00
|
|
|
<!doctype html>
|
2011-08-07 15:34:28 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2015-09-30 13:11:22 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2012-10-08 21:42:56 +00:00
|
|
|
<title>jQuery UI Spinner - Currency</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2011-08-07 16:59:50 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
2015-07-01 03:34:08 +00:00
|
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
|
|
<script src="../bootstrap.js" data-modules="external/globalize/globalize external/globalize/globalize.culture.de-DE external/globalize/globalize.culture.ja-JP external/jquery-mousewheel/jquery.mousewheel">
|
2015-05-14 02:01:44 +00:00
|
|
|
$( "#currency" ).on( "change", function() {
|
2011-11-16 17:07:33 +00:00
|
|
|
$( "#spinner" ).spinner( "option", "culture", $( this ).val() );
|
2011-08-07 16:59:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$( "#spinner" ).spinner({
|
2011-08-07 15:34:28 +00:00
|
|
|
min: 5,
|
|
|
|
max: 2500,
|
|
|
|
step: 25,
|
|
|
|
start: 1000,
|
|
|
|
numberFormat: "C"
|
2011-08-10 12:55:16 +00:00
|
|
|
});
|
2011-08-07 15:34:28 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2014-04-24 11:40:02 +00:00
|
|
|
<p>
|
|
|
|
<label for="spinner">Amount to donate:</label>
|
|
|
|
<input id="spinner" name="spinner" value="5">
|
|
|
|
</p>
|
|
|
|
|
2011-08-07 15:34:28 +00:00
|
|
|
<p>
|
|
|
|
<label for="currency">Currency to donate</label>
|
|
|
|
<select id="currency" name="currency">
|
|
|
|
<option value="en-US">US $</option>
|
|
|
|
<option value="de-DE">EUR €</option>
|
|
|
|
<option value="ja-JP">YEN ¥</option>
|
2011-08-10 12:55:16 +00:00
|
|
|
</select>
|
2011-08-07 15:34:28 +00:00
|
|
|
</p>
|
2011-08-07 16:59:50 +00:00
|
|
|
|
2011-08-07 15:34:28 +00:00
|
|
|
<div class="demo-description">
|
2012-07-15 11:07:38 +00:00
|
|
|
<p>Example of a donation form, with currency selection and amount spinner.</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2011-08-07 15:34:28 +00:00
|
|
|
</body>
|
|
|
|
</html>
|