Noob here with a frustrating JS problem:
I have a JS datepicker that successfully pops up on my PHP page (a form), but it doesn't pop-up in a DIV (the DIV is a JS show/hide).
Any thoughts or suggestions?
- Code: Select all
<script type="text/javascript">
$(function(){
$('#content_ready').daterangepicker({arrows:false});
});
</script>
- Code: Select all
<input type="radio" name="previous_version" value="No" <? if($request == "No"){ ?> checked="checked" <? } ?> onclick="javascript:showStuff('previousno')">No<br />
<div id="previousno" style="display:none">
Content will be ready by:<br />
<input name="content_ready" type="text" value="<?=$content_ready?>" id="content_ready" size="30px"/>
</div>
-HM

