Last active
August 27, 2016 16:04
-
-
Save leepettijohn/6f54ee4d13a60b0e87132a486c94f755 to your computer and use it in GitHub Desktop.
Remove text before each selection
This file contains hidden or 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
| //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