i dont have a clue how i should rewrite this jquery so i can pass parameters into it. i want to pass an id into the function so i place it like, $(".dialog" + id)
.
i am goin to trigger it with a <a>
$(document).ready(function() {
$(".btnCheck").live("click", function(evt) {
evt.preventDefault();
$(".dialog").dialog({
height: 700,
width: 600,
closeOnEscape: true,
title: 'prev'
}).dialog("open");
});
});