diff --git a/librerias/landingjs/scripts_landing.js b/librerias/landingjs/scripts_landing.js
index 055fa74..d5aa47f 100644
--- a/librerias/landingjs/scripts_landing.js
+++ b/librerias/landingjs/scripts_landing.js
@@ -9,3 +9,7 @@ $(window).scroll(function() {
$(window).scroll(function(){
$(".top").css("opacity", 1 - $(window).scrollTop() / 100);
});
+
+$('.dropdown-menu').click(function(e) {
+ e.stopPropagation(); //This will prevent the event from bubbling up and close the dropdown when you type/click on text boxes.
+ });