У меня такая же проблема со всеми сборщиками дат, которые я пытаюсь. он загружает большой запрос в j, когда я нажимаю на поле ввода, но это путь к большому. его вышли за пределы контейнера, и я пробовал все решения, которые люди терпели и не добились успеха. Поле календаря имеет нужный размер, но дни и даты сломаны с страницы. Может кто-нибудь мне помочь.Выбор даты слишком большой для страницы
<meta name="viewport" content="width=device-width" />
<link href="media-styles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
.ui-виджет {семейство шрифтов: Lucida Grande, Lucida Sans, Arial, без засечек; font-size: 0.6em; }
</head>
<body>
<noscript>
For full functionality of this site it is necessary to enable JavaScript.
Here are the <a href="http://www.enable-javascript.com/" target="_blank">
instructions how to enable JavaScript in your web browser</a>.
</noscript>
<?php include("includes/header.php"); ?><!-- banner_area External File-->
<div id="container"><!--Opening Container -->
<div class="register_login_upload_content"><!-- maincontent-->
<div class="titleheading"><h3>Upload a Coupon</h3></div><!--Opening submit Header -->
<div id="uploadformarea"><!-- Opening submit Area -->
<form method="post" id="couponform" >
<input type="hidden" name="companyid" id="user_id" value="<?php echo $id; ?>" />
<label for="adtitle">Choose a title for Coupon:</label>
<input type="text" name="adtitle" id="titleinput" />
<label for="desc">Description:</label>
<textarea name="desc" id="coupondesc"></textarea><br />
<label for="enddate">Select expiry date: </label>
<input type="text" class="datepicker" name="enddate" id="couponEndDate"/>
<input type="hidden" name="uploadtype" value="create_coupon" />
<input type="submit" name="createcoupon" id="createcoupon" value="Create" class="submit-button"/>
</form><!-- End of submit Form -->