I have the following code on an .ascx page, which is part of a module I'm working on.
<script type="text/javascript" charset="utf-8">
$(document).ready(function($){
$('#example').dataTable();
cript Fired');
})(jQuery);
</script>
The #example is just the ID of an HTML table. The script is not firing at all - the alert is not seen.
Any ideas what I screwed up? Thanks!