Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andyf-7/62ec997bfaaf20104ee6 to your computer and use it in GitHub Desktop.
Save andyf-7/62ec997bfaaf20104ee6 to your computer and use it in GitHub Desktop.
mouse click then this position div show on jquery
$(document).on("click",".footer-container ul li span a",function(e){
$('#viewfooterdoplist').css( 'position', 'absolute' );
$('#viewfooterdoplist').css( 'top', e.pageY );
$('#viewfooterdoplist').css( 'left', e.pageX );
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment