Book Image

PhoneGap Beginners Guide (third edition)

Book Image

PhoneGap Beginners Guide (third edition)

Overview of this book

Table of Contents (22 chapters)
PhoneGap Beginner's Guide Third Edition
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Related Plugin Resources
Index

The onclick event


The onclick event is fired when a pointing device button (usually a mouse button) is pressed and released on a single element:

<button onclick="callFunction()">Click</button>

<script>
function callFunction() {
   alert("Button Clicked");
}
</script>