So I'm making a simple box rotate using jquery and jquery.transit.
I'm working with a basic .click function which calls another named function. However the named function executes before I click the button (immediately as the page loads) and I was wondering why this is happening and how can I fix this?
Here is a jsfiddle: http://jsfiddle.net/kdLSS/1/
My code:
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color:yellow;
width:100px;
border:1px solid blue;
position:absolute;
left:50px;
}
</style>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js'></script>
<script src='jquerytransit.js'></script>
<title>test</title>
</head>
<body>
<script>
$(function() {
function hello() {
$("#block").transition({
perspective: '0px',
rotateY: '180deg'
}, 100 );
}
$("#go").click(hello())
});
</script>
<button id="go"> Run</button>
<div id="block">Hello!</div>
</body>
</html>
Thanks so much and happy thanksgiving for those in the states!