> I have another problem with a submit button. It works well as input > type="submit" and moves on to the next ten records, but when I change > it to an image it seems to just refresh the page but not go to the > next records. > > This works: <input type="submit" class="formitems" value="Next 10" > name="submitNext"> > > This does not: <input type="image" class="formitems" > src="/images/next10.gif" value="Next 10" name="submitNext" > onclick="javascript:this.form.submit();"> > > I added onclick="javascript:this.form.submit(); but to no avail. > > Am I missing something here? > > Robert O.
Have you tried: <a href="javascript:void(0)" onclick="javascript:this.form.submit();"> <img src="/images/next10.gif"></a> larry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198822 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

