I'm trying to make a "dynamic" background, the idea is:
The index.html has to have a background, this background must have an image, like a logo. This logo must appear until the user tries to navigate and access a link, this link will call an internal script that will load a content within the div result.
The problem I can not make this happen, until now I get to the vice versa, but of course not what I'm looking for.
Here is the html code.
<!--CSS-->
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
margin-left:auto;
margin-right:auto;
-webkit-font-smoothing: antialiased;
background-image: url("imagenes/logo.jpg");
background-size: 25%;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
border-style: solid none none none;
}
<!--HTML-->
<body>
<div class="navigation-wrapper">
<div class="container">
<div class="navigation">
<div id="main-menu-container">
<div id="main-menu" class="nav">
<li class="menuparent">
<a>MENU</a>
<ul class="sub-menu">
<li><a id="page7">First option, same block</a></li>
<li><a id="page9">Second option, same block</a></li>
<li><a id="page10">Third option, same block</a></li>
</ul>
</body>
<!-- El Script -->
<div id="result">
<script src="./docu2_files/jquery.js" type="text/javascript">
</script>
</div>