Attempting to change from using an alert to a pop-up with a simple if statement, but encountering some issues. Here is the current code:
if(values == ''){
$('body').css('cursor','auto');
alert("Blah Blah...");
}
The goal is to modify the code to show a pop-up instead:
if(values == ''){
$('body').css('cursor','auto');
$('body').show('#myModal');
}