Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Putting Javascript in wordpress page WordPress

I have the java script code (2 sets of code) and I need it put in to two different wordpress pages. I have tried and I can not get it to work correctly. I can provide the code via e-mail and I would like this done asap. I can also provide a fully functional working example of what the code will be doing.

( http://ddmulch.danddmulchandlandscape.com/index.php/calculator.html ) <-- This is the example of what it should look like when finished but on my site. I have retained the code from the owner of this site and have permission to use it I just can't get it working.

Answers (4)

2011-03-15

Denzel Chia answers:

Hi,

You can contact me on email[at]denzeldesigns.com
My current rate is USD$30 per hour.
If it is simple, I can get it done within two hours of work.

Thanks.
Denzel

2011-03-16

Hameedullah Khan answers:

Hello,

I will charge you $15 per hour and can do it in 1 hour.

Thanks,
Hameedullah Khan.

2011-03-16

Hai Bui answers:

Hi,

I can do it for 20$ in 1 hour. Contact me dragondance08[at]gmail.com

Regards,
Hai

2011-03-16

Luis Giménez answers:

To include your javascript files only in certain pages you can put in your functions.php something like:


<?php
// $page = Page ID, Page Title or Page Slug
if (is_page($page))
{
// More info bout this function: http://codex.wordpress.org/Function_Reference/wp_enqueue_script
wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
}
?>


This would be the way to go with wordpress.