I have below HTML inside html file which is referred in webpart page CEWP. Though this works fine as independant html page, while rendering in sharepoint , it is somehow showing up data-ico attribute text. Can you pls help out in pinpoinintg the issue. Code is simple jQuery mobile demo in sharepoint.
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="https://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="https://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
</head>
<body>
<div data-role="page" id="home">
<header data-role="header">
<h1>Register</h1>
</header>
<div data-role="main" class="ui-content">
<div data-role="fieldcontain">
<label for="Services" class="ui-hidden-accessible " >
Country:
</label>
<select name="Services" id="Services" data-native-menu="false" data-mini="true" multiple="multiple" size="4">
<option>Country</option>
<option value="hotel">Hotel</option>
<option value="transport">Transport</option>
<option value="others">Others</option>
</select>
</div>
</div>
</div>
</body>
</html>
