toggle() stopped working after I added jquery UI
hi
I have a div toggle and works fine untill I add jqueryUI library and it stops working, here is the code.
<a href='#' onclick="$('#block').toggle('200');" >showme</a>
<div id='block'>stuff here</div>
it works perfectly untill i add :
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js" type="text/javascript"></script>
to the header.
its only toggle() which stopped, ajax and rest still work. there is no error or anything on firebug. just dosn't toggle anymore.
what can be the problem?