I have an image. Here,I have written jQuery that looks like below :
jQuery('.image').click(function(){
var path = $(this).attr('src');
});
Now, I want to fire copy event for this path.When I press ctrl+v button then it print above path so what jQuery should I have to write?
I need to fire copy event automatically. So it is possible?