Forum Moderators: open
<script>
$("#js_test").html('This will be dynamic content run by Javascript ... ');
</script>
<div id="main" class="big-box">
<div class="bg-top">
<div class="bg-bottom">
<!-- Slider -->
<div id="big-slider" class="slider">
<!-- Slider Holder -->
<div id="js_test" class="slider-holder" style="border:solid;">
<noscript>Display Alternate (Non dynamic) Content...</noscript>
</div>
</div>
</div>
</div>
</div>
$(function(){
$("#js_test").html('This will be dynamic content run by Javascript ... ');
)};
$(window).load(
function() {
$("#js_test").html('This will be dynamic content run by Javascript ... ');
});