I’m doing project on Graphical based password and the case is i’m creating a 5X5 grid on webpage,and use will click on the points on grid and the points will save in database,
the concern is
- How to create Grid .. and save the points with Ajax technology or using jquery ?
A grid could be both <div> based or using a <table>.
You can give every element class a unique ID and trigger on that.
On the top of my head, a bit like:
And in your JQuery code you’d do a
Whereby your server script (auth.php) could trip which button is pressed, and hence do authentication that way.