-
-
Save somatonic/2790406 to your computer and use it in GitHub Desktop.
Anchor-include Pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* anchor-include pattern for already-functional links that work as a client-side include | |
* Copyright 2011, Scott Jehl, scottjehl.com | |
* Dual licensed under the MIT | |
* Idea from Scott Gonzalez | |
* to use, place attributes on an already-functional anchor pointing to content | |
* that should either replace, or insert before or after that anchor | |
* after the page has loaded | |
* Replace: <a href="..." data-replace="articles/latest/fragment">Latest Articles</a> | |
* Before: <a href="..." data-before="articles/latest/fragment">Latest Articles</a> | |
* After: <a href="..." data-after="articles/latest/fragment">Latest Articles</a> | |
* Also, the data-threshold attr allows a min width for this to apply. | |
* On domready, you can use it like this: | |
$("[data-append],[data-replace],[data-after],[data-before]").ajaxInclude(); | |
*/ | |
(function( $ ){ | |
$.fn.ajaxInclude = function( e ) { | |
return this.each(function() { | |
var el = $( this ), | |
target = el.data( "target" ), | |
targetEl = target && $( target ) || el, | |
threshold = screen.width > parseInt( el.data( "threshold" ) || 0 ), | |
methods = [ "append", "replace", "before", "after" ], | |
method, | |
url; | |
if ( threshold ) { | |
for( var ml = methods.length, i=0; i < ml; i++ ){ | |
if( el.is( "[data-" + methods[ i ] + "]" ) ){ | |
method = methods[ i ]; | |
url = el.data( method ); | |
} | |
} | |
if( method === "replace" ){ | |
method += "With"; | |
} | |
if( url && method ){ | |
$.get( url, function( data ) { | |
var responseEl = $(data), | |
eTarget = method === "replaceWith" ? responseEl : el; | |
targetEl[ method ]( responseEl ); | |
eTarget.trigger( "ajaxInclude", [eTarget, data] ); | |
}); | |
} | |
} | |
}); | |
}; | |
})( jQuery ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment