if i have
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js" type="text/javascript"></script>
both of these in my header my jquery menu does not work. i have searched google and it keeps telling me about this
<script>
jQuery.noConflict();
// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
jQuery("div").hide();
});
// Use Prototype with $(...), etc.
$('someid').hide();
</script>
for the life of me i cant work this out. can anybody explain this in layman terms. i beleive it is because they use the char set but i just dont understand how i can use them both together
many thanks
kard