Tuesday, December 9, 2014

Extract only emails from string using Javascript

Today I'm going to show you how to extract only email from string. This can be done using javascript. Here sample code
function extractEmails(text) {
   return text.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi);
 } 

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...