Hello, I am using a shopping cart that is very restrictive and I cannot edit what I need to. I am trying to add some text to a DIV using Jquery's .prepend() method, but the DIV that I need to access it not created until the 4th step of the checkout, which is refreshed in between each step.
That is supposed to add the heading "Billing Address" before the Edit link on the Payment step. Please let me know if you need any more info. Thanks!!
AJAXjQueryJavaScript
Last Comment
Kyle Hamilton
8/22/2022 - Mon
mcnute
I've gone till where credit card info is requested and didn't find the div your addressing in your code? Is this a trick to make us buy some rollers?? ;-)
Kyle Hamilton
I see the link.
You can't do it from jquery if that part of the page is refreshed with AJAX, unless there is a callback supplied to the AJAX call. Which I'm guessing it is not. You can contact the author of the javascript does the AJAX - that's about it.
Is there not template file where you can find the spot to add the HTML?
Kyle Hamilton
however, if it helps, you can style the link itself to be more obvious:
Thanks for that CSS, kozaiwaniec. That is somewhat helpful, but does not solve my original problem. Is there no way to have Jquery code execute on each refresh of a page? For each time the page is changed or loaded the code is executed?
Thanks!
Kyle Hamilton
you can definitly execute the code on pageload. but when the page content is updated via ajax, it is not reloaded.
to execute on page load wrap your function in the docready function.
$(function(){
//your code
});
lowpriceskates
ASKER
I've requested that this question be deleted for the following reason: