Adding javascript to headerinclude it seems to have a major inpact on editor and moderating options
I have a javascript for a dropdown menu from my old theme
and even if you add just
I have a javascript for a dropdown menu from my old theme
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($)
{
$('#login-drop').click(function(){
$(this).next('#login-continut').slideToggle();
$(this).toggleClass('active');
if ($(this).hasClass('active')) $(this).find('span').html('▲')
else $(this).find('span').html('▼')
})
});
</script>
and even if you add just
<script type="text/javascript">
jQuery.noConflict();
</script>