Path to Template Directory inside jQuery?
-
My header is calling a javascript file which sends out an email:
<script type="text/javascript" src="<?php bloginfo('template_directory') ?>/css/effects.js"></script>
But inside this file, I have a jQuery code that calls a .php file that does the actual sending of the email:
$.ajax({ type: "POST", url: "css/sendmail.php", data: dataString
But the script doesn’t work, unless the url is
<?php bloginfo(‘template_directory’) ?>/css/sendmail.php
and not just
css/sendmail.phpIs there any way to include a path to the template directory in js?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Path to Template Directory inside jQuery?’ is closed to new replies.