I thank you in advance for reading my question.
I am new to any programming language. I wrote some jQuery function that each div box opens and closes upon clicking.
My idea was to write code that will function whenever a div opens all the other divs close. It is pretty much functional but my code is too messy right now. I was wondering if anyone could give me some advice on cleaning this mess.
$(document).ready(function(){
var open_footer = 'click to hide';
var close_footer = 'click to see detail';
$('.text_area').hide();
$('.text_area>img').remove();
$('.click_me:eq(0)').click(function(){
$(this).next('.text_area').slideToggle(100, function(){
if($(this).is(':visible')){
$('.text_area:eq(1)').hide(); $('.text_area:eq(2)').hide()
$('.text_area:eq(3)').hide();
$('#article_footer1').text(open_footer);
$('#article_footer2').text(close_footer);
$('#article_footer3').text(close_footer);$('#article_footer4').text(close_footer);
$('.text_area:eq(0)').append('<img class="text_area_img" src="Hicks_Nat.jpg" "no-repeat"/>');
$('.text_area:eq(1)>img').remove();$('.text_area:eq(2)>img').remove();$('.text_area:eq(3)>img').remove();
} else if ($(this).is(':hidden')){
$('#article_footer1').text(close_footer);
$('.text_area:>img').remove();
}
});
});
This is a one block of code and I basically have 3 more of similar blocks. Is there anyway I could simplify this?
Edit/ Here is the CSS
.click_me{
display: block;
display: none;
padding:10px;
width: 550px;
float:left;
margin-top:15px;
margin-left: 25px;
height: 75px;
overflow: hidden;
position: relative;
background:radial-gradient(center,circle,#EEEEE0 50%, white 80%);
opacity: 1;
border-radius:10px;
border: 1px solid silver;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-moz-box-shadow:#999 2px 0px 3px;
box-shadow:rgb(110,110,110) 6px 6px 4px;
}
.click_me:hover{
background: #DCDCDC;
}
.text_area{
font-family:arial;
font-weight: bold;
font-size: 14px;
text-align:left;
background:white;
border: 1px solid silver;
border-radius: 10px;
box-shadow:#999 2px 0px 3px;
margin-top:10px;
padding: 10px;
float:right;
max-height: 600px;
width: 500px;
overflow: auto;
}