I need to know, whether we can do jQuery popup only using jQuery without using other plugins like Fancybox, Lightbox, etc.
You can do something like this:
var mywin = window.open("", "my_popup", "location=0,status=0,scrollbars=0,width=500,height=500");
var contents = "HTML content...";
$(mywin.document.body).html(contents);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With