how to create a basic unordered list displaying bullets
Howdy,
I've seen posts for this elsewhere, but the suggestions are not working for me.
I need a basic <ul> that displays the <li> with the standard bullets. Here's what I've tried...
I placed the mobile.ignoreContentEnabled = true in the head...
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Webmail</title>
<link rel="stylesheet" href="../../css/themes/default/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
<link rel="stylesheet" href="../_assets/css/pages.css" />
<script src="../../js/jquery.js"></script>
<script src="../../docs/_assets/js/jqm-docs.js"></script>
<script src="../../js/jquery.mobile-1.2.0.js"></script>
<script>
$(document).on('mobileinit', function () {
$.mobile.ignoreContentEnabled = true;
});
</script>
</head>
I put my <ul> in a <div> with the data-enhance="false" attribute...
<div data-enhance="false">
<ul>
<li>Send and receive email.</li>
<li>View foundation staff availability and schedule meetings.</li>
<li>Open the foundation’s global address list.</li>
</ul>
</div>
But no bullets for my <li>. Not sure what else to do.
Thank you for any help you can give!
kave