1.

Solve : HTML, load picture with a next button.?

Answer»

So I just started to try and write a web page. With the help of w3schools I got the page working pretty GOOD, but I hit a roadblock 2 days ago that I can't fix.

I have a Python script that controls a webcam that take pictures and name them by the current date and time and save it to a folder. Now I'm TRYING to get the latest picture witch a next/prev/number button. I got the next/prev/number button but need a href to LOAD, and load latest image at the front.

So far I got
Code: [Select] <body class="left-sidebar">
<div id="wrapper">
<div id="content">
<div id="content-inner">
<div class="pager">
<div class="pages">
<a href="#" class="active">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<span>&hellip;</span>
<a href="#">20</a>
</div>
<a href="#" class="button next">Next Page</a>
        </div>
<article class="is-post is-post-excerpt">
</article>
</div>
</div>

But need a way to load the latest image and get the next/prev/numbers button to WORK. Anyone know a way? Trying not to USE java or flash.



Discussion

No Comment Found