0

http://patrikmakrai.com/buttonka/ - This is the place where I try to make jquery's explode work, but it works in a weird way. Any thought why this is happening? Thanks in advance!

<div id="container">
<div id="buttonka">
</div>
<script type="text/javascript">
$('#buttonka').click(function() {
        $('#buttonka').hide('explode');
});
</script>
</div>

1 Answer 1

2

You're downloading jQuery ui before jQuery itself. Change

<script src="js/jquery-ui-1.8.16.custom.min.js"></script>
<script src="js/jquery-1.6.2.min.js"></script>

to

<script src="js/jquery-1.6.2.min.js"></script>
<script src="js/jquery-ui-1.8.16.custom.min.js"></script>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.