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

I tried changing the script to the following and it still doesn't trigger the event.. am I missing something?

$('#page1').live('pageshow',function(event) { 
        $("#radioyes").click(function(){
            $("p").hide();
        });
});

I also tried pagebeforecreate but the result is the same.. :(


I am trying a simple jquery mobile page and testing on chrome portable. However, in the following code, the input click event isn't working where as button click works. I also tried "input#radioyes" as "div>fieldset>input#radioyes" and still doesnt work.

<!DOCTYPE html> 
<html> 
    <head> 
    <title>Background check </title> 

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <link rel="apple-touch-icon" href="images/touch-icon-iphone.png" /> 
    <link rel="apple-touch-icon" sizes="72x72" href="images/touch-icon-ipad.png" /> 
    <link rel="apple-touch-icon" sizes="114x114" href="images/touch-icon-iphone4.png" /> 

    <script type="text/javascript" src="jQuery/jquery.js"></script>
    <script type="text/javascript" src="jQuery/jquery.mobile.min.js"></script>
    <link rel="stylesheet" href="jQuery/jquery.mobile.min.css" />

    <!-- JQuery Date Picker components -->
    <link rel="stylesheet" href="jQuery/jquery.ui.datepicker.mobile.css" /> 
    <script src="jQuery/jQuery.ui.datepicker.js"></script>
    <script src="jQuery/jquery.ui.datepicker.mobile.js"></script>  

    <link rel="stylesheet" href="css/folo.css" />

    <script type="text/javascript">  

$('#page1').live('pageshow',function(event) { 
    $("#radioyes").click(function(){
        $("p").hide();
    });
});
    </script>  
</head> 

<body > 

<div data-role="page" id="page1" data-theme="a" data-title="PAGE1">
    <div data-role="header">
        <h1>"PAGE1"</h1>
    </div><!-- /header -->

    <div data-role="content" >  
    <p> Welcome. </p>

    <div id="SSN">
        <label for="basic">SSN:   </label>
        <input name="ssn" id="textSSN" value="" data-theme="a" />
    </div>
    <div id="first">     
        <label for="first">First Name:</label>     
        <input name="input_first" id="input_first" value="" data-theme="d" /> 
    </div> 
    <div id="last">     
        <label for="last">Last Name:</label>     
        <input name="input_last" id="input_last" value="" data-theme="d" /> 
    </div> 

    <button id="btn1">Click me</button>

    <div data-role="fieldcontain">
        <fieldset data-role="controlgroup" data-role="fieldcontain">
            <legend>Have you used other last name?</legend>

            <input type="radio" name="radio-choice" id="radioyes" value="yes" />
            <label for="radioyes">Yes</label>
            <input type="radio" name="radio-choice" id="radio-no" value="No"  checked="checked" />
            <label for="radio-no">No</label>
        </fieldset>

    <div id="otherlast">
        <label for="otherlast">Other Last Name:</label>     
        <input name="input_otherlast" id="input_otherlast" value="" data-theme="d" /> 
    </div> 

    </div>


   <div id="dob">            
        <label for="date">Date Of Birth:</label>         
        <input type="date" class="datepicker" name="date" id="my_date" value="01/19/1975" text="01/19/1975" />     
    </div>

    </div><!-- /content -->


</div><!-- /page -->
</body>
</html>
</html>

Appreciate any help.. The version of Jquery is 1.7.1 1.6.4 downloaded and the jquery mobile is the latest version.

share|improve this question
Have you tried an alert to see if it fires? I cant see any reason why that wouldnt work at the moment. – Sam Jan 24 '12 at 15:29
Appears to work on jsFiddle » jsfiddle.net/pfNMD – Ben Everard Jan 24 '12 at 15:30
in that example, you aren't using jquery-mobile – Jorge Jan 24 '12 at 15:42

2 Answers

up vote 1 down vote accepted
  • jQM 1.0 does not support jQuery 1.7.x please use jQuery 1.6.4 ( Source )
  • jQM uses pageInit(), not $(document).ready() ( Source )

Also jQM adds additional markup to your page so $("p").hide(); might be hiding as expected but the additional markup might still be visible. I would suggest using an id for the span elements

UPDATE:

Try this

$('#page1').live('pageshow',function(event) { 
    $("#radioyes").bind( "change", function(event, ui) {
        $("p").hide();
    });
});

Live Example:

Docs for Radio Events:

share|improve this answer
Thanks for the info.. I changed Jquery version to 1.6.4 and changed code as the update above.. I tried pagebeforecreate, pageinit etc. it still doesn't work.. is there something else that I am missing? – Kiran Jan 24 '12 at 16:42
remove the live() and just use this: $("#radioyes").click(function(){ $("p").hide(); }); – Phill Pafford Jan 24 '12 at 17:01
hmm.. still didn't work. tried this: <script type="text/javascript"> $("#radioyes").click(function(){ $("p").hide(); }); </script> – Kiran Jan 24 '12 at 17:11
What version of jQM are you using? any errors in the console? – Phill Pafford Jan 24 '12 at 17:11
Updated my answer, jQM Docs say to bind the change event jquerymobile.com/demos/1.0/docs/forms/radiobuttons/events.html – Phill Pafford Jan 24 '12 at 17:20
show 1 more comment

You cannot use $(document).ready in jquery mobile here's an documentation about it

Also here's an answer to a similiar question

share|improve this answer
Thanks for the info.. I changed Jquery version to 1.6.4 and changed code as the update above.. it still doesn't work.. is there something else that I am missing? – Kiran Jan 24 '12 at 16:41
sorry that I can't see you comment jeje I was at my lunch time... – Jorge Jan 24 '12 at 18:37

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.