App reviews, troubleshooting, and recommendations
Currently working on a shopify app which uses script tags to add a section on the thank you page (order status page).
This is my test-script.js file:
console.log('this is coming from script tag api!')
const header = $('div.section__content').parent('.section');
var myContent = function($) {
//content box contains some basic styling with divs and an image which I haven't included
const contentBox = $( ....).css(....)
header.prepend(contentbox)
}
Solved! Go to the solution
This is an accepted solution.
Yes @therahulissar , you need to add a jQuery script. Also, wrap up your jquery code within
$( document ).ready(function() {
// Wrap up your code here
});
This is an accepted solution.
Yes @therahulissar , you need to add a jQuery script. Also, wrap up your jquery code within
$( document ).ready(function() {
// Wrap up your code here
});
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025