so to understand my problem you can see THIS GIF dropdown works when i hover out at the bottom of the box or go to another dropdown but it’s stays when you hover out at the top or the right side of the div it’s litteraly an edge case. Here is my code JSFIDDLE or there is a snippet here.
Thanks for your help
$("[class^='iconWrapper']").mouseover(function(e) {
$("[class^='helpBox']").hide();
$(this).next("[class^='helpBox']").show();
});
$("[class^='helpBox']").mouseleave(function() {
$("[class^='helpBox']").hide();
});
.grid-container-PC {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 0.2fr 0.5fr;
gap: 0px 0px;
grid-template-areas: "topBar topBar topBar topBar topBar topBar" "navBar navBar navBar navBar navBar navBar";
padding: 0;
margin: 0;
}
.topBar {
grid-area: topBar;
width: 100%;
height: 4vh;
display: flex;
align-items: center;
border-bottom: 1px solid #ddd;
}
.navBar {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 0.65fr;
gap: 0px 0px;
grid-template-areas: ". mainBar mainBar mainBar mainBar ." "bottomBar bottomBar bottomBar bottomBar bottomBar bottomBar";
grid-area: navBar;
}
.mainBar {
display: grid;
grid-template-columns: 0.5fr 1fr 1fr 1fr;
grid-template-rows: 0.2fr 1fr;
gap: 0px 0px;
grid-template-areas: ". . . ." "logoBox searchBar searchBar cart";
grid-area: mainBar;
}
.searchBar {
grid-area: searchBar;
width: 100%;
height: 5vh;
}
.cart {
grid-area: cart;
}
.logoBox {
grid-area: logoBox;
width: 100%;
height: 100%;
}
.bottomBar {
width: 100%;
height: 100%;
grid-area: bottomBar;
background: rgb(245, 245, 245);
box-shadow: rgba(0, 0, 0, 0.64) 0px 2px 8px -5px;
}
.grid-container-mobile {
display: none
}
.cartWrapper {
display: flex;
position: relative;
-webkit-box-align: center;
align-items: center;
width: 90%;
margin-left: 5%;
}
.iconWrapper1,
.iconWrapper2,
.iconWrapper3 {
display: flex;
width: 33.33%;
}
.iconContent1,
.iconContent2,
.iconContent3 {
height: 56px;
min-width: 100%;
display: flex;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
}
.tileLink {
-webkit-box-align: center;
align-items: center;
display: flex;
flex-direction: column;
-webkit-box-pack: center;
width: 100%;
height: 100%;
color: black;
}
.iconPic {
font-size: 28px;
width: 32px;
height: 32px;
}
.tileLink:hover {
color: black;
text-decoration: none;
}
.iconText {
font-size: 11px;
line-height: 30px;
white-space: nowrap;
text-align: center;
padding: 0 7px 0 7px;
}
.iconContent1:hover,
.iconContent2:hover,
.iconContent3:hover {
border-top: none;
border-radius: 8px 8px 0px 0px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 2px 1px, rgba(0, 0, 0, 0.16) 0px 4px 8px 0px;
background: rgb(255, 255, 255);
z-index: 11;
-webkit-box-shadow: 10px 0px 6px -3px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 10px 0px 6px -3px rgba(0, 0, 0, 0.16);
box-shadow: 5px 0px 6px -3px rgba(0, 0, 0, 0.16);
}
.helpBox1,
.helpBox2,
.helpBox3 {
display: none;
z-index: 10;
position: absolute;
top: 100%;
min-width: 200px;
background-color: rgb(255, 255, 255);
border-radius: 0px 8px 8px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 2px 1px, rgba(0, 0, 0, 0.16) 0px 4px 8px 0px;
padding: 8px 0px 15px;
left: 0px;
}
.helpBox2 {
left: 33.33%;
min-width: 250px;
}
.helpBox3 {
right: 0%;
min-width: 250px;
}
.tileListHelpTitle {
padding: 0px 16px;
font-weight: 500;
font-family: 'Montserrat', sans-serif;
color: rgb(112, 112, 112);
font-size: 15px;
}
.listHelpBox {
list-style-type: none;
padding: 0;
margin-bottom: 0rem;
}
.listStyleHelpBox {
list-style-type: none;
box-sizing: inherit;
padding: 0px;
margin: 0px;
height: 3.4vh;
width: 100%;
font-size: 14px;
}
.linkHelpBox {
padding: 0px 16px;
width: 100%;
height: 100%;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
}
a.linkHelpBox {
color: rgb(112, 112, 112);
}
a:hover.linkHelpBox {
color: rgb(112, 112, 112);
text-decoration: none;
}
.listStyleHelpBox:hover {
background-color: rgb(245, 245, 245);
}
.dayBoxHelp,
.hourBoxHelp {
font-family: 'Montserrat', sans-serif;
color: rgb(112, 112, 112);
font-size: 10px;
}
.loginButtonHelpBox .linkLoginHelpBox,
.loginButtonHelpBox .linkCreateHelpBox {
background: rgb(0, 130, 250);
color: rgb(255, 255, 255);
border: 1px solid rgb(0, 130, 250);
border-radius: 20px;
min-width: 100%;
text-align: center;
padding: 3px 0 3px 0;
}
.loginButtonHelpBox .linkCreateHelpBox {
color: rgb(0, 130, 250);
border: 1px solid rgb(0, 130, 250);
background: rgb(255, 255, 255);
}
.hrLogin {
margin: 22px 0px 21px;
border-top: 1px solid rgb(221, 221, 221);
position: relative;
}
.textHrLogin {
font-size: 13px;
line-height: 16px;
text-align: center;
color: rgb(112, 112, 112);
background-color: rgb(255, 255, 255);
position: absolute;
top: 90px;
left: 50%;
transform: translateX(-50%);
padding: 0px 16px;
width: 130px;
}
.categoryPC {
width: 100%;
height: 100%;
padding: 9px 0 9px;
}
.categoryPCLink {
font-family: 'Montserrat', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 3px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.0/jquery.min.js"></script>
<div class="grid-container-PC">
<div class="topBar">
<div class="topBarWrapper">
<div class="container-fluid"></div>
</div>
</div>
<div class="navBar">
<div class="mainBar">
<div class="searchBar"></div>
<div class="cart">
<div class="cartWrapper">
<div class="iconWrapper1">
<div class="iconContent1">
<a class="tileLink" href=""></a>
<div class="iconPic"></div>
<div class="iconText">
test1
</div>
</div>
</div>
<div class="helpBox1"></div>
<div class="iconWrapper2">
<div class="iconContent2">
<a class="tileLink" href="{%%20url%20'order'%20%}"></a>
<div class="iconPic"></div>
<div class="iconText">
test2
</div>
</div>
</div>
<div class="helpBox2">
<div class="tileListHelpTitle">
Test value
</div>
<div class="loginButtonHelpBox">
<div class="helloMsgLogin">
Test valuej
</div><a href=""></a>
<div class="linkLoginHelpBox"></div>
<hr class="hrLogin" />
<p class="textHrLogin">Test value</p>
<div class="linkCreateHelpBox"></div>
</div>
<ul class="listHelpBox">
<li class="listStyleHelpBox"><a class="linkHelpBox">Test Value</a></li>
</ul>
</div>
<div class="iconWrapper3">
<div class="iconContent3">
<a class="tileLink" href=""></a>
<div class="iconPic"></div>
<div class="iconText">
test3
</div>
</div>
</div>
<div class="helpBox3">
<div class="tileListHelpTitle">
text
</div>
</div>
</div>
</div>
<div class="logoBox">
<div class="logoWrapper"></div>
</div>
</div>
</div>
</div>
buy prednisolone 5mg uk
tadalafil without a doctor’s prescription
advair diskus 250
levitra 100
order nolvadex and clomid
cialis online
An impressive share! I have just forwarded this onto a colleague who was conducting a little research on this.
And he actually ordered me dinner due to the fact that I
found it for him… lol. So allow me to reword this….
Thanks for the meal!! But yeah, thanx for spending some time to talk about this issue here on your
web page. http://hydroxychloroquined.online/
Exceptional post but I was wanting to know if you could write a litte more on this subject?
I’d be very grateful if you could elaborate a little bit further.
Bless you! https://herreramedical.org/hydroxychloroquine
If some one needs to be updated with latest technologies after that he must be pay a quick visit this site and be up to date
every day. https://www.herpessymptomsinmen.org/where-to-buy-hydroxychloroquine/
proscar
prednisone side effects – buying prednisone from canada prednisone 30 mg daily
cheap viagra usa
I really like your blog.. very nice colors &
theme. Did you design this website yourself or did you hire someone to
do it for you? Plz answer back as I’m looking
to construct my own blog and would like to find out
where u got this from. appreciate it http://droga5.net/
ivermectin tablets
genuine viagra online usa – viagra 800 mg viagra 100 mg canada
Quality content is the key to be a focus for the users to pay a
quick visit the site, that’s what this web page is providing. http://www.deinformedvoters.org/hydroxychloroquine
buy cialis online – tadalafil 20mg best price mypharmacy
fluoxetine 20 mg buy online
ivermectin 3 mg for humans
buy ivermectin 12 mg for humans
cost ivermectin – ivermectin 0.08 where to buy ivermectin cream
what store sells zithromax
amoxi clav for uti
casino – play casino rivers casino
best medicine for erectile dysfunction without side effects – ed pills online erectile dysfunction medications
vardenafil hcl 20mg tab brand name levitra generic for levitra
zithromax antibiotic
prednisone by mail – prednisone cost in india prednisone buy cheap
where can you get female viagra pills – price generic sildenafil female viagra uk pharmacy
doctors who prescribe ivermectin at no cost stromectol ivermectin tablets
best price cialis 20mg – Buy generic cialis best online thai pharmacy
ivermectin 1% cream generic – ivermectin medication ivermectin generic cream
albuterol inhalers not prescription required
buy ivermectin online india stromectol 3mg tablets scabies ivermectina dosis en humanos
where can i buy ed pills – ed and diabetes treatment for ed
benefits of dapoxetine
Jquery dropdown doesn’t hide when you hover out – JavaScript Help online pharmacies buy prescription drugs online without online pharmacies without an rx
best dapoxetine in india
ventolin cost australia – ventolin 90 mcg ventolin generic brand
what is the healthcare system in canada otc inhalers for asthma walmart albuterol 100 mcg
cytotec misoprostol – cytotec tablets buy online cytotec online pharmacy
Jquery dropdown doesn’t hide when you hover out – JavaScript Help ivermectin for sale near me walmart ivermectin tablets dosage ivermectin
viagra sildenafil 50mg – cheap viagra for sale online sildenafil prescription nz
Jquery dropdown doesn’t hide when you hover out – JavaScript Help ivermectin for humans for sale ivermectin ivermectin dose
order cialis from canada
accutane over the counter canada – price of accutane in mexico purchase accutane
finasteride and hair regrowth
medrol pack – lyrica without prescription lyrica tablets 50mg
Jquery dropdown doesn’t hide when you hover out – JavaScript Help ivermectin tablets for sale walmart stromectol a asian pharmacies ivermectin no prescription
affordable thesis writing – tok essay help helpwithassignment
Jquery dropdown doesn’t hide when you hover out – JavaScript Help stromectol cost of ivermectin in mexico ivermectin over the counter
Jquery dropdown doesn’t hide when you hover out – JavaScript Help what is ivermectin ivermectina posologia ivermectin
Hello, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam feedback?
If so how do you prevent it, any plugin or anything you can recommend?
I get so much lately it’s driving me mad so any assistance is very much appreciated. http://www.deinformedvoters.org/viagra-generic
Jquery dropdown doesn’t hide when you hover out – JavaScript Help lasix furosemide furosemide
Jquery dropdown doesn’t hide when you hover out – JavaScript Help stromectol 3 mg tablets price ivermectin human dosage stromectol germany
buy clomid without prescriptions uk
buy cytotec online – cytotec prescription uk cytotec oral
how to buy prednisone for dogs
advair 115 mg
sildenafil pills – sildenafil buy sildenafil pill
ipledge accutane – buy accutane online 30mg best accutane coupon
essays done for you – online assignment help college paper help
sildenafil 20 mg prescription – Buy cialis in us tadalafil 2.5 mg in india
vardenafil online – canadian pharmacy scam erection pills online
Thanks to my father who told me on the topic of this webpage, this website is in fact remarkable. http://harmonyhomesltd.com/Ivermectinum-side-effects.html
sildenafil in europe – buy cheap viagra internet brand viagra 50mg online
best online cialis pharmacy – generic cialis online tadalafil 20mg for female
online slots – online casino real money no deposit play online casino real money
prednisone 50mg cost – prednisone without prescription medication prednisone for sale without a prescription
Howdy! I understand this is somewhat off-topic but I had to ask.
Does running a well-established blog such as yours require a massive
amount work? I’m brand new to blogging but I do write in my
journal on a daily basis. I’d like to start a blog so I can share my
experience and feelings online. Please let me know if you have any kind of ideas or tips for
new aspiring bloggers. Thankyou! http://harmonyhomesltd.com/Ivermectinum-overdose.html
Appreciation to my father who told me about this weblog,
this webpage is really amazing. https://ivermectinforhumans.forsale/
Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
You obviously know what youre talking about, why waste your intelligence on just
posting videos to your weblog when you could be giving us
something informative to read? http://ciaalis2u.com/
purchase sildalis generic – brand fluconazole 200mg buy generic glucophage 500mg
buy plaquenil 200mg for sale – buy hydroxychloroquine generic order plaquenil 200mg pill
sildenafil 50mg pill – order viagra 100mg pills real cialis sites
pharmacie en ligne viagra 200mg – pharmacie en ligne cialis cialis 10mg en france
generic ivermectin for humans – stromectol without prescription ivermectin price
lyrica 75mg tablet – zithromax 250mg generic buy zithromax online
generic doxycycline – neurontin cost levothyroxine cost
order cenforce generic – buy generic zovirax purchase zovirax generic
buy hydroxyzine without prescription – order rosuvastatin generic order crestor 20mg without prescription
tadalafil generic where to buy cialis without prescription
https://cialisicp.com/ side effects of tadalafil
buy aralen for sale – buy baricitinib generic buy sildenafil 100mg pill
cialis without prescription buy tadalafil
https://cialisedot.com/ tadalafil dosage
canada generic tadalafil tadalafil blood pressure
buy tadalis tadalafil brands
ivermectin without a doctor prescription stromectol 3mg tablets
buy ivermectin 6 mg ivermectin canada