Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dustin-cooler
Created January 20, 2015 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustin-cooler/dfb86277125b060635df to your computer and use it in GitHub Desktop.
Save dustin-cooler/dfb86277125b060635df to your computer and use it in GitHub Desktop.
Automatically Populate Excerpt Field
<script>
/*
The MIT License (MIT)
Copyright (c) 2015 Dustin Cooler & Fynydd, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
// Automatically copy the first paragraph from the Body field to the Excerpt field anytime the Body field loses focus, unless the user has edited the Excerpt field.
function PopulateExcerptField() {
$(document).ready(function() {
var dirt = '<span id="ms-rterangecursor-start" rtenodeid="1"></span><span id="ms-rterangecursor-end"></span><br>';
var OldExcerpt = $("div[role='textbox'][id^='Excerpt_']").html().split(dirt).join('');
$("div[role='textbox'][id^='Body_']").on('blur',function() {
var excerpt = $("div[role='textbox'][id^='Excerpt_']");
if(excerpt.html() == OldExcerpt) {
var firstParagraph = $(this).children('p').first().html().split(dirt).join('');
excerpt.html('<p>' + firstParagraph + '</p>');
OldExcerpt = excerpt.html();
}
});
});
}
// Load jQuery if it doesn't already exist
(function() {
if(typeof jQuery === 'undefined') {
var headTag = document.getElementsByTagName("head")[0];
var jqTag = document.createElement('script');
jqTag.type = 'text/javascript';
jqTag.src = '//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js';
jqTag.onload = PopulateExcerptField;
headTag.appendChild(jqTag);
} else {
PopulateExcerptField();
}
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment