Skip to content

Instantly share code, notes, and snippets.

@leepettijohn
Last active August 27, 2016 16:04
Show Gist options
  • Select an option

  • Save leepettijohn/6f54ee4d13a60b0e87132a486c94f755 to your computer and use it in GitHub Desktop.

Select an option

Save leepettijohn/6f54ee4d13a60b0e87132a486c94f755 to your computer and use it in GitHub Desktop.
Remove text before each selection
//remove everything (and including) before ":"
<script type="text/javascript">jQuery(document).ready(function($){
$('.ai1ec-event-time').each(function(){
var str = $(this).html();
str = str.split(":").pop();
$(this).html(str);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment