Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8524943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:49:53+00:00 2026-06-11T07:49:53+00:00

I have a template that grabs values from a database and displays the data

  • 0

I have a template that grabs values from a database and displays the data using template tags. The values returned are 0 & 1 and I can;t really control that so I am trying to get some jquery to change the values so 0 = ‘no’ and 1 = ‘yes’

I have got this code working here http://jsfiddle.net/a9cvx/236/

Using this

$(document).ready(function() {
    $("body").html($("body").html().replace(/0/g,'<b>abcde-fghi</b>'));
    $("body").html($("body").html().replace(/1/g,'<b>yes</b>'));
)};

Here is my template code.

...
<tr>
   <td>Reboot VM</td>
   <td>{{ col.t_rebootvm }}</td>
   <td>waiting</td>
</tr>
....

so {{ col.t_rebootvm }} comes from the database and would equal 0 or 1.

I can see my jquery js file is within the page source code when the html is loaded.
But when I use this jquery code in my template, the values do not change. Is this because the template is being rendered and the value 0 or 1 isn’t available on load? Is this something else?

Many thanks – Oli

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T07:49:55+00:00Added an answer on June 11, 2026 at 7:49 am

    Replacing strings in an entire HTML document is not a good practice. You will loose events and most likely replace things that you dont want. It could also be pretty slow.

    You should at least try to be more specific in your selector, something like:

    $(function() {
         $('td').each(function() {
             var html = $(this).html();
             $(this).html( 
                 html.replace(/0/,'<b>no</b>')
                     .replace(/1/,'<b>yes</b>')
             );
         });
    });
    

    http://jsfiddle.net/prF9k/

    Don’t forget to put you DOM logic inside a DomReady callback as well (I used $(function(){...). The reason why your fiddle works anyway, is because jsFiddle adds the script below the HTML so it will not be necessary to wrap it in a domReady callback. However, if you script is in the HEAD of the document you will need to do so.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a template that displays a list of objects from the database. {%
I have a template that displays the titles of a custom post type. I
I have Microsoft Word template that I automated filling it's fields from my application,
i have a simple template that i populate with some data then im trying
I have template that looks like this: 100 template<size_t A0, size_t A1, size_t A2,
I have a template that creates a unique identifier for each type it is
I have a ListView template that's being used in several places and I'd like
I have a Meteor template that includes the following: {{#with selected_recipe}} {{>recipe}} {{/with}} In
I have a Django template that I want to extend in multiple places. In
i have bought a template that have built in contact form problem is that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.