Show QR Code at bottom of Order Status Page

Hello , I can add the qr code from liquid variable using js onto order status page however this qr code shows right on top under the ‘THANK YOU’

is it possible to show this div at bottom of page (below ‘Order Details’ ) or other selected space ?.

Hi @FBR_POS ,

Use the below script to append the image at the last.

let div = document.createElement('div');
div.innerHTML = "# hari";
document.querySelector(".step__sections").append(div)

Replace the div with your img code.

Hope it will help…

Ok Got it working —

Thanks to @gr_trading , for pointing in right direction how ever had to fiddle with ‘DOMContentLoaded’ before it let me access all the elements.

I will accept your answer as it does point in the right direction.