Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Web Sites Buttons Fail

  • 1 reply
  • 1 has this problem
  • 17 views
  • Last reply by Shreveport

more options

CANNOT UPLOAD PAGES..... This has been going on for weeks now. I have reloaded and reinstalled several times. I sometimes can luckout and start Chrome and paste the url and continue. Not so with the https pages. So Firefox is dead and worthless to me in these situations. I run into at least one a day usually more..

Since every instance seems to be dealing with JS or Java I have installed and uninstalled both several times and still have issues.

Ok I have had a recurring problem where a button or two is dead on a page...Just tried to place an order at academy sports and Will try attaching the page and button that is failing. It is trying to upload 250kb which just failed..A jpg file. Anyways the screen if it foes not upload is just shipping info and the items I am ordering. Under each column is a button that states "Continue to Shipping Method"

That button is dead. Neither of them work. No error messages more like they are a picture and nothing else. Also there is a remove button on each item and it also is dead.

The code is this:

<script type="text/javascript">
jQuery(function(){
  jQuery('.order-summary-edit-prod').on('click', function(event) {
    event.preventDefault();
    var qty = parseInt(jQuery(this).parents('dl').find('.line-item-qty').html());
    jQuery(this).toggleClass('hidden');
    jQuery(this).parents('dl').toggleClass('editing').find('.qty-group').toggleClass('hidden');
    jQuery(this).parents('dl').find('.qty-group').children('input').val(qty);
    jQuery('.decrease-qty').focus();
  });

  jQuery('.increase-qty').on('click',function(){
      var qty=jQuery(this).siblings('input'),
          currentVal = parseInt(qty.val());
      if (!isNaN(currentVal)) {
        qty.val(currentVal + 1);
      }
  });

  jQuery('.decrease-qty').on('click',function(){
      var qty=jQuery(this).siblings('input'),
          currentVal = parseInt(qty.val());
      if (!isNaN(currentVal) && currentVal > 0) {
        qty.val(currentVal - 1);
      }
  });

  jQuery('.update-btn').on('click', function(event) {
    event.preventDefault();
    var newQty = jQuery(this).siblings('input').val(),
        newSubtotal = (parseFloat(jQuery(this).closest('.line-item-diffs').children('dd:first-of-type').text()) * newQty).toFixed(2);
    jQuery(this).parent('.qty-group').toggleClass('hidden');
    jQuery(this).closest('.line-item-diffs').parent().closest('dl').toggleClass('editing').siblings('.order-summary-edit-prod').toggleClass('hidden');
    jQuery(this).parent().siblings('.line-item-qty').html(newQty);
    jQuery(this).closest('dd').siblings('.line-item-subtotal').text(newSubtotal);
  });
})
</script>

           <button type="button" class="btn z-btn-checkout btn-lg btn-block btn-block-adjacent" id="rwdShippingContinue_Btn2">Continue to Shipping Method</button>************************************************
           
         </div>
        </div>
        
      </div>
      
    </div>
    
  </main>

  <!-- BEGIN AYRCheckoutFooter.jsp -->

WISH ME LUCK IT STILL SAYS UPLOADING THE JPG OF THE CART....And when I try to continue who knows what is going to happen. The only other thing I was going to upload was the red button itself....

CANNOT UPLOAD PAGES..... This has been going on for weeks now. I have reloaded and reinstalled several times. I sometimes can luckout and start Chrome and paste the url and continue. Not so with the https pages. So Firefox is dead and worthless to me in these situations. I run into at least one a day usually more.. Since every instance seems to be dealing with JS or Java I have installed and uninstalled both several times and still have issues. Ok I have had a recurring problem where a button or two is dead on a page...Just tried to place an order at academy sports and Will try attaching the page and button that is failing. It is trying to upload 250kb which just failed..A jpg file. Anyways the screen if it foes not upload is just shipping info and the items I am ordering. Under each column is a button that states "Continue to Shipping Method" That button is dead. Neither of them work. No error messages more like they are a picture and nothing else. Also there is a remove button on each item and it also is dead. The code is this: <pre><nowiki><script type="text/javascript"> jQuery(function(){ jQuery('.order-summary-edit-prod').on('click', function(event) { event.preventDefault(); var qty = parseInt(jQuery(this).parents('dl').find('.line-item-qty').html()); jQuery(this).toggleClass('hidden'); jQuery(this).parents('dl').toggleClass('editing').find('.qty-group').toggleClass('hidden'); jQuery(this).parents('dl').find('.qty-group').children('input').val(qty); jQuery('.decrease-qty').focus(); }); jQuery('.increase-qty').on('click',function(){ var qty=jQuery(this).siblings('input'), currentVal = parseInt(qty.val()); if (!isNaN(currentVal)) { qty.val(currentVal + 1); } }); jQuery('.decrease-qty').on('click',function(){ var qty=jQuery(this).siblings('input'), currentVal = parseInt(qty.val()); if (!isNaN(currentVal) && currentVal > 0) { qty.val(currentVal - 1); } }); jQuery('.update-btn').on('click', function(event) { event.preventDefault(); var newQty = jQuery(this).siblings('input').val(), newSubtotal = (parseFloat(jQuery(this).closest('.line-item-diffs').children('dd:first-of-type').text()) * newQty).toFixed(2); jQuery(this).parent('.qty-group').toggleClass('hidden'); jQuery(this).closest('.line-item-diffs').parent().closest('dl').toggleClass('editing').siblings('.order-summary-edit-prod').toggleClass('hidden'); jQuery(this).parent().siblings('.line-item-qty').html(newQty); jQuery(this).closest('dd').siblings('.line-item-subtotal').text(newSubtotal); }); }) </script> <button type="button" class="btn z-btn-checkout btn-lg btn-block btn-block-adjacent" id="rwdShippingContinue_Btn2">Continue to Shipping Method</button>************************************************ </div> </div> </div> </div> </main> <!-- BEGIN AYRCheckoutFooter.jsp --> </nowiki></pre> WISH ME LUCK IT STILL SAYS UPLOADING THE JPG OF THE CART....And when I try to continue who knows what is going to happen. The only other thing I was going to upload was the red button itself....
Attached screenshots

Modified by cor-el

All Replies (1)

more options

Below is red button....Still says uploading and never finishes but I can see above it did both of them...Even now the red button is visible but says it is uploading....

Thanks in advance and be patient...I am an old fart and not the most computer literate person around....