मैं इस फैंसी छोटे जावास्क्रिप्ट का उपयोग कर रहा हूं ताकि एक क्षेत्र को उजागर किया जा सके क्योंकि उपयोगकर्ता इसके ऊपर मंडराता है। क्या आप मुझे बता सकते हैं कि क्या कोई onclick
फ़ंक्शन जोड़ने का एक तरीका है जो एक लिंक के रूप में कार्य करेगा और एक URL पर जाएगा?
<script>
$(function() {
$('tr').hover(function() {
$(this).css('background-color', '#eee');
$(this).contents('td').css({'border': '0px solid red', 'border-left': 'none', 'border-right': 'none'});
$(this).contents('td:first').css('border-left', '0px solid red');
$(this).contents('td:last').css('border-right', '0px solid red');
},
function() {
$(this).css('background-color', '#FFFFFF');
$(this).contents('td').css('border', 'none');
$('a#read_message.php').click(function(){ URL(); });
});
});
</script>