vote up 1 vote down star

Hi, Im trying to achieve the following:

A certain page will have a series of strings, which are replaced with database content if it exists.
For example:

<h2 class="label">Title:</h2>
<p class="value">{{Title}}</p>

Would become:

<h2 class="label">Title:</h2>
<p class="value">This is the title</p>

The problem is, if the database row for {{Title}} has never been entered, it displays the {{Title}} instead of replacing it with whitespace. So what id like to do is, with jquery, if .value contains {{, hide the whole element, in the same way display:none would.

Is this possible?

Thanks in advance.
Rob

flag
8  
Are you in control of the server-side? Sounds like the server-side logic just needs to be updated. – meder Oct 5 at 9:29
1  
+1 with meder. If you do this with jQuery it will be visible for an instant. Better not showing it in first place using server-side processing. – MaLKaV_eS Oct 5 at 9:32
1  
The server side is a in house developed php CMS, unfortunately I'm not experienced enough in php (nor is time at an advantage at the moment) to tackle it there, although I do agree its how it should be resolved. I managed to fix another similar issue with jquery with the help of stackoverflow members a few months ago and although its a bit of a botch, it keeps the users happy while we figure out a long term solution, like moving the content over to a backend that we can actually manage :) – prevailrob Oct 5 at 9:35

4 Answers

vote up 4 vote down check
$(function () // when DOM is ready for manipulation, do:
{
    // for each of the p-elements in the DOM (add your own context or class-scope
    // or whatever you can do to narrow down the list of elements here):
    $("p").each(function () 
    {
        // cache the element (always a good idea when doing multiple operations
        // on the same entity):
        var that = $(this);

        // if the text of the element is "{{Title}}" then hide the element:
        if (that.text() == "{{Title}}") that.hide();

        // alternatively you can do:

        // if the the characters "{{" exists at any position in the text of the
        // element, hide it:
        if (that.text().indexOf("{{") > -1) that.hide();
    });
});
link|flag
Thanks a million!, this does just the trick. – prevailrob Oct 5 at 9:47
You are welcome. My code looks a bit bulky, but you have to remember that JavaScript is a horribly slow language, where you really have to optimize for speed. Take [Kobi]'s answer--it is a lot cleaner than mine, but I suspect that it is also a lot slower on large collections. – roosteronacid Oct 5 at 9:52
2  
Kobi has run some tests, and his code is about 2 times faster than mine. Even though my answer solved your problem, I suggest you accept his answer over mine, since its a lot slicker :) – roosteronacid Oct 5 at 11:03
@roosteronacid - I appreciate the juster, though it is unnecessary. Thanks. – Kobi Oct 5 at 15:48
Not at all, Kobi. This is about figuring out the best answer to a problem. And yours is the best answer. – roosteronacid Oct 5 at 22:06
vote up 0 vote down

Could you not just give the p a class of title?

<h2 class="title label">Title:</h2>
<p class="title value"></p>

And then to hide / show it:

if(title != '')
{
    $('p.title.value').text(title);
}
else
{
    $('.title').hide();
}
link|flag
vote up 3 vote down

Try:

$('p.value').each(function(i,e){
  if ($(e).text().match(/^{{.*}}$/)) {
    $(e).hide();
  }
});
link|flag
Just what I was looking for... a pitty I suck at regular expressions – MaLKaV_eS Oct 5 at 9:35
-1 I see no need to new up a RegExp object each p-element. You can do this with a simple indexOf or equality-operation. – roosteronacid Oct 5 at 9:38
Also, you are not caching anything--if we're talking a large collection of elements, wrapping "this" (or in your case "e") multiple times is quite the performance-hit. – roosteronacid Oct 5 at 9:45
1  
I second those, wasn't really optimized for performance. I'd go for the simpler indexOf if you don't need to be more valid. – fuckmywig Oct 5 at 9:59
vote up 5 vote down
$("p.value:contains('{{')").hide();

Edit:
There's a claim this code is slower. It should be said this is fairly basic, and in fact runs about 3 times faster.
Check this example (first one is slower): http://jsbin.com/ikite

link|flag
Nice one. I'm curious though.. what is the performance-hit? It's not the most basic selector :) – roosteronacid Oct 5 at 9:39
@roosteronacid - I'd say it's pretty basic, I've done more complex selectors and had no problems. – Kobi Oct 5 at 9:49
@anonymous downvoder - please explain. The code works, btw: jsbin.com/oquto – Kobi Oct 5 at 9:52
I'm the one down voting. The selector is very clean and easily readable. But if you we're to run it on a collection of, say, a 100 elements, you would experience rendering-blips. – roosteronacid Oct 5 at 9:55
2  
I stand corrected. Although my code runs a bit faster without the 2nd if-clause, your code is still about 2 times faster. – roosteronacid Oct 5 at 11:01
show 7 more comments

Your Answer

Get an OpenID
or

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