Codice:
<html> <head><title>immagine click</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
#bottone {
display:none;
}
</style>
<script>
$(document).ready(function() {
$("#img").click(function() {
$('#bottone').show();
});
});
</script>
</head><body>
<img src="1.jpg" id="img">
<button type="button" id="bottone">ok</button>
</body>
</html>
non avevo lettto il doppio click
puoi modificare
$("#img").click(function() {
in
$("#img").dblclick(function() {