Skip to content

Instantly share code, notes, and snippets.

@Omrika
Last active August 29, 2015 14:12
Show Gist options
  • Save Omrika/b056eb6e55c7623aeaee to your computer and use it in GitHub Desktop.
Save Omrika/b056eb6e55c7623aeaee to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#reverse').click(function() {
var comment = $('#input').val();
var rev_str = comment.split('').reverse().join('');
alert(rev_str);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment