Subversion Repositories eFlore/Applications.cel

Rev

Rev 2216 | Details | Compare with Previous | 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
	);
2216 aurelien 15
 
16
	$(".champ_selection_texte").each(function() {
17
		$(this).attr('size', $(this).val().length - 10);
18
	});
2207 aurelien 19
});