egroupware/phpgwapi/js/jquery/jqplot/examples/example.js

12 lines
410 B
JavaScript
Raw Normal View History

2011-08-10 01:10:50 +02:00
$(document).ready(function(){
$('script.code').each(function(index) {
if ($('pre.code').eq(index).length ) {
$('pre.code').eq(index).text($(this).html());
}
else {
var str = $(this).html();
$('div.jqplot-target').eq(index).after($('<pre class="code">'+str+'</pre>'));
}
});
$(document).unload(function() {$('*').unbind(); });
});