简体   繁体   中英

unable to over ride Bootstrap Popover hide

I am using bootstrap to build website. but i am stuck with a problem with popovers.

In a form input field, I have applied the popover and it is working fine. but when the user clicks on the input field again, the popover hides.

Now, I want it to stay forever until I do a custom action.

I could not find any related scenario on the web. Any help is appreciated.

You can try show div again of click with your custom code like:

$('#yourInputId').on('click', function(){
      $('yourPopupId').show();
});

OR you can find this input bind in bootstrap code and then delete it rome there.(I'm talking about not minified version)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM