Note that there are some explanatory texts on larger screens.

plurals
  1. POButton tag not showing in IE7 (JQuery)
    primarykey
    data
    text
    <p>Seems to be working in every other browser, but for some reason I can't get the button to show up in IE7. </p> <p>Here's part of the HTML, CSS and JQuery:</p> <pre><code>&lt;div class="bookit"&gt;&lt;a&gt;Bookable locally&lt;/a&gt;&lt;/div&gt; button { margin:auto; padding:2px 5px 3px 5px; font-weight:bold; } #btnSubmit { z-index:1000; display:block; width:100%; height:100%; position:absolute; margin:auto; padding:2px 5px 3px 5px; font-weight:bold; } .bookit a { display:none; } &lt;script type="text/javascript"&gt; $(document).ready(function(){ $(".bookit").appendTo($("div" + toopen + " &gt; div &gt; div.costs")); $("#dp1").appendTo($("div" + toopen + " &gt; div &gt; div.costs &gt; div.bookit")); $("#txtAltDate").appendTo($("div" + toopen + " &gt; div &gt; div.costs &gt; div.bookit")); $(".ui-datepicker-trigger").appendTo($("div" + toopen + " &gt; div &gt; div.costs &gt; div.bookit")).text("Book now..."); $('.costsdetails').show(); $('.bookingdetails').hide(); $(".excursionSubmitButton").hide(); return false; }); }); &lt;/script&gt; &lt;script type="text/javascript"&gt; $('.dropdown a').click(function () { if ($(this).attr("name") == "local") { $(".ui-datepicker-trigger").hide(); $(".bookit").show(); } else { $(".ui-datepicker-trigger").show(); $(".bookit").hide(); pickable = $(this).attr("name").split(","); closedDays; } }); $(".datepicker").each(function() { $(this).datepicker({ showOn: "button", buttonText: "Book now...", showWeek: true, firstDay: 1, onSelect: function(date) { $(this).parent().find('button').text("Change date..."); // Change words on datepicker button }) }); &lt;/script&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload