way to change value of h2 on div hover

Posted by user3624298 on Stack Overflow See other posts from Stack Overflow or by user3624298
Published on 2014-05-26T21:14:35Z Indexed on 2014/05/26 21:25 UTC
Read the original article Hit count: 63

Filed under:
|
|
|

So basically making some concept logic for a project I am working on. Basically it's a portfolio and each box will be a picture and I want to be able to change the value of a h2 to some type of description. Right now it's just a black box so 'square1, square2, square3...etc' will work for now. I looked up some stuff on jquery and found this link from an SO answer. Basically what I need but he is only shifting through one piece of information instead of many in my case. Wondering how I can achieve that via jquery. I imagine I would need to make an array with all the descriptions I need, and (this is where I am lost) somehow attach the value of array to the square and then from there change text of h2 to the array value. Thanks for any help in advance here's what I have so far (not much just did some foundation work). Not sure if this matters but if there is no hover I want the h2 to say nothing.

HTML (makes me post code if I have jsfiddle)

<div class="squares">
    <div class="square1"></div>
    <div class="square2"></div>
    <div class="square3"></div>
    <div class="square4"></div>
    <div class="square5"></div>
    <h2 class="squareIdent"> </h2>
</div>

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery