Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2207 aurelien 1
$(document).ready(function() {
2
	$(".champ_selection_texte").hover(
3
			function() {
4
				 $(this).select();
5
			}, function() {
6
				// rien à faire sur le mouseout
7
			}
8
	);
9
 
10
	$(".lien_image_originale").click(
11
		function () {
12
			window.open($(this).val(), '_blank');
13
		}
14
	);
15
});