-2

i have a set of links in tag

when a user clicks on one of the link the database takes time(3-5secs) to get the result page in this while the if the user clicks on other links it is getting redirected to other link.

how can we prevent or handle this situation?

Liam
  • 27,717
  • 28
  • 128
  • 190
Tanjore Raj
  • 135
  • 1
  • 1
  • 7
  • Please include some more details and some code. Follow the guidelines on asking a good question here http://stackoverflow.com/help/how-to-ask – nagyben May 26 '16 at 09:38
  • `how can we prevent or handle this situation?` Write the program (code) or hire a coder (Programmer). – Abdul Rehman May 26 '16 at 09:39
  • Welcome to SO. Please visit the [help] and take the [tour] to see what and how to ask. HINT: Post code and effort – mplungjan May 26 '16 at 09:39

1 Answers1

0

Try adding the following class to all the links, till the time you are getting response. Then remove the classes once you got the result.

.noClick
{
   pointer-events: none;
   cursor: default;
}
Shrabanee
  • 2,706
  • 1
  • 18
  • 30