$( 'selector' ).on( 'selectstart', 'selector', function( ) {
return false;
}).css( 'MozUserSelect','none' ).mousedown( function( ) {
return false;
});
replace the selector with your own - this code works fine on all browsers. Using .on() for elements inserted dynamically to the DOM