Codelabel addon

There is some conflicts between jquery and prettify.js embeded inside
codelabel
plugin so jquery code used from others plugins doesnt work at all. So all addons that use jquery won’t work if codelabel is used.

I have created the sample code which uses prettify.js from codelabel bundle which performs some actions using jquery which reprodeces the issue.

<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script src="prettify.js"></script>
<link href="prettify.css" type="text/css" rel="stylesheet" />

<script> 
$(document).ready(function(){
  $("#flip").click(function(){
    $("#panel").slideToggle("slow");
  });

});
</script>
 
<style type="text/css"> 
#panel,#flip
{
padding:5px;
text-align:center;
background-color:#e5eecc;
border:solid 1px #c3c3c3;
}
#panel
{
padding:50px;
display:none;
}
</style>
</head>

<div id="flip">Click to slide the panel down or up</div>
<div id="panel">Hello world!</div>

</body>
</html>