No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Assuming that the script page has no other content on it and when done you get bounced back to the home page you can place a loading image on the body background. <style type="text/css"> html,body{height:100%; width:100%;} .loading{background:transparent url('/images/some-loading-animation.gif') no-repeat center center;} </style> <body class="loading"> If you do have content to …
First I would like to point out that you do not need javascript to accomplish this. All you need are anchors. `<a href="#target">Target Card</a>` would scroll to: `<div id="target"> ... </div>` or `<h1 id="target"> ... </h1>` But you asked for jquery so here you go: <ul id="cssmenu"> <li><a href='#' data-target="ApS"><span>Aperitivi-Spirituosen</span></a></li> …
For anyone else who stumbles here since the OP did not provide the solution when Self-Answered. If you start at 0 with the logic above it will produce 9 rows and 9 columns because 0 is the first step. 0-8 is nine steps. $row = 0; $column = 0; while($row …
Very old discussion but what the heck. Here is a console app proxy that orders the checks and then by ref hands the index to a recursive call until you get to the last node. It returns true when you match nodes or itterate beyond the last nodeIndex without a …
The End.