I can't enter any text inside the textbox in fancybox.
Click on "Change email address"
Here is my code Jsfiddle
Javascript
$(document).ready(function() {
$("#emailverification").fancybox({
closeClick : true, // prevents closing when clicking INSIDE fancybox
openEffect : 'none',
closeEffect : 'none',
closeBtn : false,
// keys : {
// close : null
// },
helpers : {
overlay : {closeClick: false} // prevents closing when clicking OUTSIDE fancybox
}
}).trigger("click");
$('#logout').click(function(){
window.location="<?php echo site_url(); ?>home/logout";
});
$('#addbtn').click(function(){
$(".input_add").toggle(); //add input box
});
$( "#resendemail" ).click(function() {
//code here...
});
});
Thanks in advance.