I made a paging control and I noticed that while clicking on the buttons it is very easy to accidentally select the individual images and text. Is it possible to prevent thi
try this:
document.onselectstart = function() { window.getSelection().removeAllRanges(); };