$('.element-with-popup').magnificPopup('open'); // Will open the popup
$('.element-with-popup').magnificPopup('open', 5); // Will open popup with 5th item
$('.element-with-popup').magnificPopup({
items: {
src: 'path-to-image.jpg',
type: 'image'
}
// (optionally) other options
}).magnificPopup('open');