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

Can not access elements from a webpage

I am trying to write a java script code for a facebook page to automatically submit data.But havin trouble getting elements. here is my code

{

function hehe(){ 'use strict' ; setInterval(function(){$('.sharBtn').trigger('click');console.log("done");}, 3000); } hehe();

}

error : Tried to get element with id of "%s" but it is not present on the page

1 Answer

Steven Parker
Steven Parker
231,248 Points

:point_right: The problem is likely in some other code.

Assuming jQuery is loaded, this code establishes a timer that will fire the click event handler on any button with the class of "sharBtn" every 3 seconds.

This little bit of code makes no attempt to access any elements by ID, nor does it contain the string "%s". The problem most likely lies elsewhere.