1
Answer

my jquery function is called two times what is that problem

 $('.dlImgs').mouseover(function(e) {
             alert('d');
             return;
         });
it is write in $(document).ready function
this is my code but it display alerts two time what is the problem

Answers (1)