Skip to content

Instantly share code, notes, and snippets.

@lf94
Last active November 21, 2015 00:04
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 lf94/0d1df4d618a60a9fffd4 to your computer and use it in GitHub Desktop.
Save lf94/0d1df4d618a60a9fffd4 to your computer and use it in GitHub Desktop.
Fix Elegant Builder for WordPress 4.0
function et_pb_get_content( textarea_id ) {
var content;
content = $( '#' + textarea_id ).val(); //Why not just use jquery in the first place, since you know, it actually works?
return content.trim();
}
function et_pb_set_content( textarea_id, content ) {
$( '#' + textarea_id ).val( content );
}
@mtedwards
Copy link

Thanks so much for this.... saved me from having to rebuild a theme!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment