-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey-mobile.html
50 lines (31 loc) · 1.34 KB
/
survey-mobile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title></title>
<script>
var utility = {
isMobile: function(){
if( /Android|webOS|iPhone|iPod|iPad|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
return 'true';
}
}
};
$(document).ready(function(){
if(utility.isMobile()){
}
})
</script>
</head>
<body>
<div id="logo_holder"><a id="site_logo" href="http://www.savoirfaire.com/" title="Savoir Faire" class="logo"><img src="http://www.savoirfaire.com/skin/frontend/savoir/default/images/logo_narrow.png" /></a></div>
<h1>Survey</h1>
<div style="margin: 0 auto;">
<br> <span id="survey"></span>
<script type="text/javascript">// <![CDATA[
(function(t,e,o,c){var n,s,a;t.SMCX=t.SMCX||[],e.getElementById(c)||(n=e.getElementsByTagName(o),s=n[n.length-1],a=e.createElement(o),a.type="text/javascript",a.async=!0,a.id=c,a.src=["https:"===location.protocol?"https://":"http://","widget.surveymonkey.com/collect/website/js/FX6vwoLHMuof_2B7ExJfnQzIeOPN0Z_2FufkWwt9mgTq1pQRaLeacOVtTg9G9hJc_2BK6H.js"].join(""),s.parentNode.insertBefore(a,s))})(window,document,"script","smcx-sdk");
// ]]></script>
</div>
</body>
</html>