Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code below tries to implements a button action in jQueryMobile,but it is not working for me. Please let me know where I am wrong.Everything is written in a HTML file. I am facing some problem in providing my code here. Here is what I am trying. In standard HTML format, I am writing the below code between script tags

$('#theButton').click(function() {
   alert('The Button has been clicked,');

});

And in the body tag ---

<div data-role="page">
<div data-role="content">
    <input type="button" id="theButton" name="theButton" value="The Button">
</div>

But the action is not getting called.

share|improve this question
any chance of any more code? Is jQuery Mobile working? Is the script fragment actually being run? How do we know there aren't errors stopping the event from being bound? Have you got console open so you can say there are no errors? – popnoodles Dec 26 '12 at 6:34
Dear @popnoodles : please refer below the answer – Abhishek Bedi Dec 26 '12 at 8:07
is that the code you have and does it still not work? – popnoodles Dec 26 '12 at 8:09
@popnoodles: The code works & i have accepted the answer(see the green checkmark). – Abhishek Bedi Dec 26 '12 at 8:58

1 Answer

up vote 0 down vote accepted

EDIT: Please try the code below:

<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

<script language="javascript">

    $(function() {
     $('#theButton').on('tap click',function(event, ui) {
        alert('The Button has been clicked');
     });
    });

</script>
</head>
<body>
<div data-role="page">
<div data-role="content">
    <input type="button" id="theButton" name="theButton" value="The Button">
</div>
</div>
</body>
</html>
share|improve this answer
Dear @naoki, i am trying a simple example for the button action but its not working.I think i am missing a very basic element. – Abhishek Bedi Dec 26 '12 at 6:40
OK, I edited the code above. Please try it. – naoki Dec 26 '12 at 6:49
Thanks @naoki for the quick help.:) really appreciate that. – Abhishek Bedi Dec 26 '12 at 7:10
@naoki- When i run the file in iPhone Simulator(Safari browser) the alert shows: file://(null). Any idea ? – Abhishek Bedi Dec 26 '12 at 7:12
When the alert shows? Before pushing the button? – naoki Dec 26 '12 at 7:22
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.