I\'m not sure why but all the modal functions are not working with me. I checked the version and the load they are fine.
I keep getting this error message:
use the object to call...
Try This
or if you using ajax to show that modal after get result, this is work for me...
$.ajax({ url: "YourUrl",
type: "POST", data: "x=1&y=2&z=3",
cache: false, success: function(result){
// Your Function here
$("#myModal").modal("show");
}
});