When I add the code to my site, it keeps jumping to the top

Depending on the view and what you're doing in EntryThingy it'll jump to the top of the page. This is great if the EntryThingy is near the top of the page - it makes it easier to use. But if you put your EntryThingy further down, it can make it really difficult to use - and possibly drive you nuts. To stop it from jumping to the top, add the following line to your EntryThingy code, right above the entryThingy(); statement:

w_['scrollupto']="no";

It might even be better to tell it where to jump to. Measure how many pixels down your EntryThingy is and add this to your EntryThingy code:

w_['scrollupto']="xpx";

replacing xpx with the number of pixels down from the top. If it's 200px, for example, set it like this:

w_['scrollupto']="200px";

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.