pay.js 410 Bytes
// pay.js
;(function() {
	function infoHoverHandler() {
		$('.info-form>div').on('mouseover', function(event) {
			event.stopPropagation();
			$(this).children('.operate').removeClass('hidden');
		});

		$('.info-form>div').on('mouseout', function(event) {
			event.stopPropagation();
			$(this).children('.operate').addClass('hidden');
		});
	}


	$(document).ready(function() {
		infoHoverHandler();
	})
})()