Skip to content

Instantly share code, notes, and snippets.

@shiv122
Created August 12, 2021 06:29
Show Gist options
  • Save shiv122/d41500009a20778770541d4f40b3214d to your computer and use it in GitHub Desktop.
Save shiv122/d41500009a20778770541d4f40b3214d to your computer and use it in GitHub Desktop.
$('.readMore').change(function(e) {
e.preventDefault();
var div = $(this).parent();
div.find("p:first").css('-webkit-line-clamp', 'unset')
div.find("label:first").css('display', 'none')
});
$('.boxOverflow').focusout(function(e) {
e.preventDefault();
console.log('out');
var div = $(this).parent();
div.find("p:first").css('-webkit-line-clamp', '')
div.find("label:first").css('display', '')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment