Hej folk,
actually I develope a small browsergame for my personal use.
The user should do scroll with his mouse over the map (like Google Maps) which I realized with utterscroll.js.
On the second the user should can build structures, delete and upgrade them on a fixed DIV-Grid. The number of the grid is the same like the position id of the place the user can build something.
Also for the build menu I need to href the grid DIVs but when I do this utterscroll can't scroll anymore and I don't know why it does it. :/
HTML
<div class="viewport">
<a href="#"><div id="grid">Grid 1</div></a>
<a href="#"><div id="grid">Grid 2</div></a>
<a href="#"><div id="grid">Grid 3</div></a>
<a href="#"><div id="grid">Grid 4</div></a>
...
</div>
"InGame"
All grids are linked DIVs (see above)
When I try to scroll with the mouse I "drag and drop" the link instead of scrolling trough the screen/map
I only use the default utterscroll.js.
I hope you guy's can help!
rumpetroll