Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
Ranked #4K
~13.6K People Reached

4 Posted Topics

Member Avatar for James_43

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 …

Member Avatar for James_43
0
11K
Member Avatar for Latrell_vie

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> …

Member Avatar for Chris_33
0
270
Member Avatar for CreatorZeus

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 …

Member Avatar for Chris_33
0
207
Member Avatar for DaveTran

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 …

Member Avatar for Chris_33
1
2K

The End.