BizSolSystems
New Member
So I'm having some issues here. These two javascripts are conflicting with one another. When they are alone, they both work but when put on the same page, only the error box works, first code box below.
and
Any reason why?
Code:
<script type="text/javascript">
$(function() {
$('#overlay').fadeIn('fast',function(){
$('#box').animate({'top':'160px'},500);
});
$('#boxclose').click(function(){
$('#box').animate({'top':'-200px'},500,function(){
$('#overlay').fadeOut('fast');
});
});
});
</script>
and
Code:
<script type="text/javascript" charset="utf-8">$(document).ready(function(){ $("input.login_hint").ezpz_hint(); });</script>
Any reason why?