I have the following which i use in a traditional onclick event for a DIV tag
How would I go about implementing this using jquery?
$parameter = "onClick=\"selprice('" .
$price_options_array[$price_counter]['price'] . "','" .
$price_counter . "')" . "\"";
I use the above and just add it to my div like so:
<div class="price_row" <?php echo $parameter; ?>>
I have this so far using the jquery method but Im not sure how to proceed?
$(document).ready(function() {
$('.price_row').click(function() {
????
});
});