I'm wondering how hard it would be to dynamically replace content in a wordpress site through the use of JQuery.
This is the article I'm going off of:
<a href="http://css-tricks.com/6336-dynamic-page-replacing-content/" rel="nofollow">http://css-tricks.com/6336-dynamic-page-replacing-content/</a>
My basic idea was to change the elements referred to in their javascript file to the elements created in wordpress by default. This means changing page-wrap to wrapper, main-content to main-col, and guts to content.
<del>I ran into a speed bump when I tried replacing 'guts' though. For some reason the page doesn't show the content anymore.
Anyway, after I get that sorted out,
</del>
I figured it out. I'll insert the code into my wordpress site and hope for the best.
one of the pages:
Javascript that is inserted into the header:
This is the article I'm going off of:
<a href="http://css-tricks.com/6336-dynamic-page-replacing-content/" rel="nofollow">http://css-tricks.com/6336-dynamic-page-replacing-content/</a>
My basic idea was to change the elements referred to in their javascript file to the elements created in wordpress by default. This means changing page-wrap to wrapper, main-content to main-col, and guts to content.
<del>I ran into a speed bump when I tried replacing 'guts' though. For some reason the page doesn't show the content anymore.
Anyway, after I get that sorted out,
</del>
I figured it out. I'll insert the code into my wordpress site and hope for the best.
one of the pages:
Code:
<body>
<div id="wrapper">
<header></header>
<div class="nav">
<ul class="sf-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>
<section id="main-col">
<div id="content">
<h2>Home</h2>
<p></p>
<p></p>
</div>
</section>
</div>
</body>
</html>
Javascript that is inserted into the header:
Code:
/*
* jQuery hashchange event - v1.2 - 2/11/2010
* http://benalman.com/projects/jquery-hashchange-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
(function($,i,b){var j,k=$.event.special,c="location",d="hashchange",l="href",f=$.browser,g=document.documentMode,h=f.msie&&(g===b||g<8),e="on"+d in i&&!h;function a(m){m=m||i[c][l];return m.replace(/^[^#]*#?(.*)$/,"$1")}$[d+"Delay"]=100;k[d]=$.extend(k[d],{setup:function(){if(e){return false}$(j.start)},teardown:function(){if(e){return false}$(j.stop)}});j=(function(){var m={},r,n,o,q;function p(){o=q=function(s){return s};if(h){n=$('<iframe src="javascript:0"/>').hide().insertAfter("body")[0].contentWindow;q=function(){return a(n.document[c][l])};o=function(u,s){if(u!==s){var t=n.document;t.open().close();t[c].hash="#"+u}};o(a())}}m.start=function(){if(r){return}var t=a();o||p();(function s(){var v=a(),u=q(t);if(v!==t){o(t=v,u);$(i).trigger(d)}else{if(u!==t){i[c][l]=i[c][l].replace(/#.*/,"")+"#"+u}}r=setTimeout(s,$[d+"Delay"])})()};m.stop=function(){if(!n){r&&clearTimeout(r);r=0}};return m})()})(jQuery,this);
$(function() {
var newHash = "",
$mainContent = $("#main-col"),
$pageWrap = $("#wrapper"),
baseHeight = 0,
$el;
$pageWrap.height($pageWrap.height());
baseHeight = $pageWrap.height() - $mainContent.height();
$("sf-menu").delegate("a", "click", function() {
window.location.hash = $(this).attr("href");
return false;
});
$(window).bind('hashchange', function(){
newHash = window.location.hash.substring(1);
if (newHash) {
$mainContent
.find("content")
.fadeOut(200, function() {
$mainContent.hide().load(newHash + "#content", function() {
$mainContent.fadeIn(200, function() {
$pageWrap.animate({
height: baseHeight + $mainContent.height() + "px"
});
});
$("sf-menu a").removeClass("current");
$("sf-menu a[href="+newHash+"]").addClass("current");
});
});
};
});
$(window).trigger('hashchange');
});