Skip to content

Instantly share code, notes, and snippets.

@sarfraznawaz2005
Last active October 12, 2015 18:29
Show Gist options
  • Save sarfraznawaz2005/8995ddebe379b81c0bfe to your computer and use it in GitHub Desktop.
Save sarfraznawaz2005/8995ddebe379b81c0bfe to your computer and use it in GitHub Desktop.
Making Cross Browser Functions
var getMyText = function(myDiv) {
getMyText =
myDiv.innerText !== undefined ? // innerText not supported in FF
  function(myDiv) {return myDiv.innerText} :
function(myDiv) {return myDiv.textContent};
return getMyText(myDiv);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment