Using getElementById fails, cause it tries to find the element with id "in" in the father HTML. How to get content of input element "id" from within the popup?
<html>
<head>
<link media="all" type="text/css" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/0.9.9/magnific-popup.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/0.9.9/jquery.magnific-popup.min.js"></script>
</head>
<body>
<button id="someid">Open popup</button>
<script>
$('#someid').magnificPopup({
items: {
src:
'<div class="white-popup"><br>\
<input id="in" type="text" placeholder="content">\
<a href=document.getElementById('in')>Click</a>',
type: 'inline'
}
});
</script>
</body>
</html>
You can use event delegation, like this
1
Demo: http://jsbin.com/votam/1/
2 or
DEMO: http://jsbin.com/votam/2/
3
Demo: http://jsbin.com/votam/3/edit