vote up 2 vote down star
4

I'm wanting to use jQuery to wrap a mailto: anchor around an email address, but it's also grabbing the whitepace that the CMS is generating.

Here's the HTML I have to work with, the script as I have it and a copy of the output.

html

<div class="field field-type-text field-field-email">
  <div class="field-item">
    name@example.com    </div>
</div>

jQuery JavaScript

$(document).ready(function(){
  $('div.field-field-email .field-item').each(function(){
    var emailAdd = $(this).text();
      $(this).wrapInner('<a href="mailto:' + emailAdd + '"></a>');
   });
 });

Generated HTML

<div class="field field-type-text field-field-email">
  <div class="field-items"><a href="mailto:%0A%20%20%20%20name@example.com%20%20%20%20">
    name@example.com    </a></div>
</div>

Though I suspect that others reading this question might want to just strip the leading and tailing whitespace, I'm quite happy to lose all the whitespace considering it's an email address I'm wrapping.

Cheers,
Steve

flag

53% accept rate

3 Answers

vote up 11 vote down check

Use the replace function in js:

var emailAdd = $(this).text().replace(/ /g,'');

That will remove all the spaces

If you want to remove the leading and trailing whitespace only, use the jQuery $.trim method :

var emailAdd = $.trim($(this).text());
link|flag
Correct but /\s/g would be a clearer pattern (the "i" is redundant and the ' ' is an unusual form - also fwiw a pattern of /(^\s*)|(\s*$)/g is equivalent to trim. – annakata Dec 18 '08 at 10:04
You are correct annakata, I removed the /i because it is redundant since case sensitivity in this case is not an issue – Andreas Grech Dec 23 '08 at 13:03
vote up 11 vote down

Actually, jQuery has a built in trim function:

 var emailAdd = jQuery.trim($(this).text());

See here for details.

link|flag
vote up 0 vote down

Top notch answers my friends. Go to the top of the class.

link|flag
This is not an answer. You have plenty of rep to be able to comment. – Crises of Identity Oct 30 at 3:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.