Hi all,
I’m trying to add some EE code into HTML that’s been uotput to the page via jQuewry. I’ve added $config[‘protect_javascript’] = ‘n’; to my config file.
Here’s what I’ve got so far
$('#confirmation').html("<h4>Message Submitted Successfully!</h4><p>")<br />
.append("Thank you for completing our contact form. We will be in touch shortly.")<br />
.append("Click here to <a href="http://{path=services/index}">see some of the services</a> we offer.");As you can see, I simply want to link people back to my services page.
Any ideas?
Thanks.