JSFiddle - React, Tailwind, and code Playground
by mayooresan
HTML
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<style>
.myClass {
white-space: normal;
}
</style>
</head>
<body>
<div data-role="page" id="MessagesPage">
<div data-role="header"> <a href="#HomePage" data-icon="home" data-direction="reverse">Home</a>
<h1 id="ScheduleDayText">Messages</h1>
</div>
<div data-role="content">
<ul data-role="listview" id="MessagesList" data-autodividers="false">
<li date="2013-03-20"><a href="#">Event 1 With take every second Saturday of each month</a>
</li>
<li date="2013-03-20"><a href="#">Event 2 With take every second Thrusday of each month</a>
</li>
<li date="2013-03-19"><a href="#">Event 3</a>
</li>
</ul>
</div>
</div>
<script>
$(document).on("pageinit", "#MessagesPage", function() {
//white-space: normal;
$("#MessagesList a").bind('hover', function(event) {
$(this).css('white-space', 'normal');
$("#MessagesList").listview("refresh");
});
});
</script>
</body>
</html>