Skip to content

Commit adf42c3

Browse files
committed
Update examples to use jQuery 1.7.1 & jQuery UI 1.8.16 for IE9 compatibility (fix vicbGH-17)
1 parent 68441ea commit adf42c3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The newly created select default option is the original select title attribute:
4141

4242
## Requirements ##
4343

44-
* jQuery 1.4+
44+
* jQuery 1.4+ (you might need a newer version for IE9 compatibility)
4545

4646
## Options ##
4747

examples/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<link rel="stylesheet" type="text/css" href="../css/jquery.bsmselect.css" />
1010
<link rel="stylesheet" type="text/css" href="example.css" />
11-
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
12-
11+
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
12+
1313
<style type="text/css">
1414
form {
1515
width: 400px;
@@ -24,8 +24,8 @@
2424
}
2525
</style>
2626

27-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
28-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.js"></script>
27+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
28+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
2929
<script type="text/javascript" src="../js/jquery.bsmselect.js"></script>
3030
<script type="text/javascript" src="../js/jquery.bsmselect.sortable.js"></script>
3131
<script type="text/javascript" src="../js/jquery.bsmselect.compatibility.js"></script>
@@ -36,7 +36,7 @@
3636

3737
// Initialize options
3838
var cities = ['Atlanta', 'Baltimore', 'Boston', 'BuenosAires', 'Calgary', 'Chicago', 'Denver',
39-
'Dubai', 'Frankfurt', 'HongKong', 'Honolulu', 'Houston', 'KualaLumpur', 'London', 'LosAngeles',
39+
'Dubai', 'Frankfurt', 'HongKong', 'Honolulu', 'Houston', 'KualaLumpur', 'London', 'LosAngeles',
4040
'Melbourne', 'MexicoCity', 'Miami', 'Minneapolis', 'Montreal', 'NewYorkCity', 'Paris', 'Philadelphia',
4141
'Rotterdam', 'SanDiego', 'SanFrancisco', 'SaoPaulo', 'Seattle', 'Seoul', 'Shanghai', 'Singapore', 'Sydney',
4242
'Tokyo', 'Toronto', 'Vancouver'];

examples/index_simple.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
</style>
2525

26-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
26+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
2727
<script type="text/javascript" src="../js/jquery.bsmselect.js"></script>
2828

2929
<script type="text/javascript">//<![CDATA[
@@ -57,10 +57,10 @@
5757
});
5858

5959
//]]></script>
60-
60+
6161
</head>
6262
<body>
63-
63+
6464
<h1>Example 1: bsmSelect specific options</h1>
6565
<h3>Execizing the features added over asmSelect</h3>
6666
<ul>

0 commit comments

Comments
 (0)