$(document).ready(function () {
$('.aspV2').hover(function () {
if ($(this).find('input[name=_asp]').length == 0)
appendAsp(this);
});
$('.aspV2').click(function () {
if ($(this).find('input[name=_asp]').length == 0)
appendAsp(this);
});
});
function appendAsp(elm) {
var alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var randomclass = '', randomloop = 10;
randomloop = Math.round(Math.random() * 15);
for (var i = 0; i < randomloop; i++) {
randomclass = alphabet[Math.ceil(Math.random() * 25)];
}
randomclass += Math.ceil(Math.random() * 99999);
var html = "\
\
\
\
\
\
\
\
";
//var html = "";
$(elm).append(html);
}