i have created a popup window, the close icon at the top right corner is not properly set to the close button. i have my jquery like,
function LoadSampleTest() {
$("<div></div>")
.attr('id','SampleQuestionDiv')
.appendTo("body")
.dialog({
modal: true,
close: function () { $(this).remove(); },
Width: 800,
height: 400,
title: "Questions and Answers"
}).load("/dashboard/sampletest/");
and my pop here,
kindly tell how to achieve this.