Hi,
Iam using the following code in my shopping site.The code is working fine.Now i want to show product title,price ,short description of the product,add to cart button in jquery dialog.How do i do this.
$(function () {
debugger;
$("#dialog").dialog({
modal:true,
autoOpen: false,
resizable: false,
width: "auto"
});
$(".dialogify").bind("click", function(e) {
e.preventDefault();
$("#dialog").html("<img src='" + $(this).next().find('img').attr('src') + "' width='150' + height='150'>");
$("#dialog").dialog("option", "position", {
modal:"true",
my: "center",
at: "center",
//title:$title,
of: window
});
if ($("#dialog").dialog("isOpen") == false) {
$(&q ...
Go to the complete details ...