Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Question on writing javascript?

I was wondering if somebody could point me in the right direction. I am looking to write javascript code that just shows advertising to new visitors of an ecommerce site. I have the basics just not sure how to write it for audience conditions.

2 Answers

Sean T. Unwin
Sean T. Unwin
28,690 Points

I'd probably go with a cookie. If they have it then don't load the ads. This could be done from the server as well. That way you wouldn't need to perform an AJAX request or multiple refreshes/redirects.

I found this article that explains the use of cookies fairly well - http://www.pontikis.net/blog/create-cookies-php-javascript

Thanks Sean appreciate that..