You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
314 B
JavaScript

// JavaScript Document
function selectCard(theme,name){
$.ajax({
type:"GET",
url: "/cards/cardview/index.asp?cardtype="+theme+"&cardname="+name,
//data: $("#sendCardForm").serialize(),
beforeSend:function(){$.facebox("Loading...");},
success: function(msg1){
$.facebox("<div>"+ msg1 +"</div>");
}
});
}