Changes between Initial Version and Version 1 of Ticket #8592, comment 1


Ignore:
Timestamp:
Sep 22, 2012, 12:56:35 PM (11 years ago)
Author:
glthomas224
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8592, comment 1

    initial v1  
    22
    33In the code I pasted above, replace this:
     4
    45$('html').click(function () {
    56    $.datepicker._hideDatepicker();
     
    78
    89with the following segment of code:
     10
    911if (!$target.is('html')) {
    1012    $.datepicker._hideDatepicker();
     
    1416
    1517After the <body> tag on your page add:
     18
    1619<div id="underneath" style="position:absolute; width:0px; height:0px; z-index:-10000; top:0; overflow:hidden; background-color:transparent;"></div>
    1720
    1821In your style sheet or within your <style> tag add this:
     22
    1923html{overflow-x:hidden}
    2024
    21 Finally just prior to the </body> tag add the following script
     25Finally just prior to the </body> tag add the following script:
     26
    2227<script type="text/javascript">
    2328    jq171('#underneath').css('height', jq171(document).height() + 'px');
     29
    2430    jq171('#underneath').css('width', jq171(window).width() + 'px');
     31
    2532    jq171('#underneath').css('left', "0");
    2633