Hi,
Trying to execute below code in custom code of an activity.
Can anyone please help me in getting to what I am missing here.
<script type="text/javascript">
jQuery(document).ready(function(){
alert("DOM is ready");
// wait until window is loaded (images, links etc...)
window.onload = function() {
alert("window is loaded");
jQuery('.price-wrap').each({
var storePrice = jQuery(this).children('strong');
jQuery(this).children('strong').remove();
var getPriceWrap = jQuery(this).text();
getPriceWrap.replace('total','');
jQuery(this).html(getPriceWrap);
jQuery(this).prepend(storePrice);
});
});
</script>
Views
Replies
Total Likes
Hi Gajan,
We think there’s a syntax error with the jQuery too. I would recommend starting with basic javascript console.log statements to make sure they understand the order of operations, check that jQuery is defined, etc.
Thanks & Regards
Parit Mittal
Views
Replies
Total Likes
Hi
I'm having a similar issue with jQuery and can't even get console.log statements to show.
James
Views
Replies
Total Likes
Hi James & Gajan ,
Can you please share the url of your website as well as the account details in a private message so that we can debug the issue at our end.
Thanks & Regards
Parit Mittal
Views
Replies
Total Likes
Views
Likes
Replies