up vote 4 down vote favorite
1
share [g+] share [fb]

I currently use Cufon accross our site with something similar to Cufon.set('fontFamily', 'DIN Medium').replace('h1'); Now for a single H1 tag i would like Cufon to be disabled, this is without changing the H1 tag to any other tag, it must remain as it is.

I can add classes etc to the H1 tag if required, and can do any HTML/CSS/JS just not changing the actual tag.

Anyone know if this is possible and if it is how?

Thanks in advance,

Shadi

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Depending on which selector engine you use, you can:

  • add a class to your exception h1 element
  • you can use the :not selector to only apply cufon to the h1's that don't have the aforementioned class (with jQuery and classname 'clean' it would be something like Cufon.replace('h1:not(.clean)');
link|improve this answer
Genius! Very good selector! :) – Shadi Almosri Apr 30 '10 at 15:42
Genious solution! Exactly what I needed:) – Rob May 4 '11 at 10:20
feedback
function remove_cufon(selector) {
    $(selector).html( cufon_text(selector) );
    return true;
}

function cufon_text(selector) {
    var g = '';
    $(selector +' cufon cufontext').each(function() {
        g = g + $(this).html();
    }); 
    return $.trim(g);
}

Usage:

remove_cufon('#name');
link|improve this answer
Works fine, great :) – john Jul 25 '11 at 19:17
feedback

by single h1 you mean?

$('h1').each(function(){
    if($(this).siblings('h1').length)
        Cufon.set('fontFamily', 'DIN Medium').replace(this);
});
link|improve this answer
I don't think that will work, you are telling Cufon to replace all the h1 elements again. You can send the DOM element though. – jpabluz Apr 29 '10 at 15:07
This will just style all H1 tags. – Shadi Almosri Apr 29 '10 at 15:31
edited. meant to do that – Funky Dude Apr 30 '10 at 1:26
feedback

Your Answer

 
or
required, but never shown

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