For some reason, in Internet Explorer 6, I cannot get window.print(); to actually work within jQuery. Any ideas why this isnt working?
<script> 
 $(document).ready(function(){ 
function print() { 
 window.print(); 
 return false;
} 
$("a#test").click(function() { 
 print(); 
 }); 
 }); 
</script>
Here is my jsbin: http://jsbin.com/ukoyo/
Also, it seems that window.print(); will not work with Multiple IE.