egroupware/phpgwapi/js/jquery/jqplot/examples/example.js
2011-08-09 23:10:50 +00:00

12 lines
410 B
JavaScript

$(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(); });
});