I ve been trying to get this working for the last hour, but I can t for the life of me, so I thought i d ask here.
I have this code:
<ul id="myCarousel">
<% foreach (var date in entryDates)
{ %>
<li>
<div style="text-align:center;width:60px;">
<span class="headerSpan" id="day_<%=date.ToString("dd-MM-yyyy")%>">abc</span>
</div>
<input class="timeInput narrow" type="text" id="time_<%= date.ToString("dd-MM-yyyy")%>"/>
<input class="subsInput narrow" type="text" id="subs_<%=date.ToString("dd-MM-yyyy") %>"/>
</li>
<% } %>
</ul>
<script type="text/javascript">
$(document).ready(function() {
$( #myCarousel ).jcarousel({
scroll: 7,
animation: 1000,
buttonNextHTML: "<span id= next >Next</span>",
buttonPrevHTML: "<span id= previous >Previous</span>"
});
});
</script>
It works fine in Chrome and FireFox, but it simply will not scroll in IE.
Any ideas why not?