fancybox - Issue with the latest jquery colorbox v1.4.14 -


we have updated jquery colorbox latest version v1.4.14. after update, fields(input, select) inside jquery ui modal dialog/fancy box opened within colorbox looks readonly. not able edit/enter text of fields of modal dialog.

below code have used open colorbox , fancybox(within colorbox):

$.colorbox({ href: '/contact/save/' + id, width: "1200px", height: "450px", title: 'loan & borrow ', overlayclose: false, esckey: false, onload: function () { $('#cboxclose').hide() }, oncomplete: function () { $('#cboxclose').show() } });  $.fancybox({         'width': 100,         'height': 100,         'transitionin': 'elastic',         'transitionout': 'elastic',         'speedin': 600,         'speedout': 200,         'overlayshow': true,         'overlayopacity': '0.9',         'autoscale': false,         'autodimensions': false,         'title': 'quick add',         'titleshow': true,         'titleposition': 'over',         'hideonoverlayclick': false,         'centeronscroll': false,         'href': '/contact/_quickaddlocation',         'oncomplete': function () {             $("#fancybox-wrap").css({ 'top': '5px', 'bottom': 'auto' });             $("#fancybox-content").css({ 'padding-top': '35px' });         }     }); 

it works fine jquery colorbox version v1.3.19. have workaround latest version v1.4.14? please suggest.


Comments

Popular posts from this blog

node.js - Bad Request - node js ajax post -

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -