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 8506145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:30:54+00:00 2026-06-11T02:30:54+00:00

<script language=javascript> $(div.post-content , .parsedsig).each(function(){ if($(this).html().indexOf([/tabulaScriptum]) != -1) { pattern = /\[tabulaScriptum=(.*?)\]([^\[]*)\[\/tabulaScriptum\]/gi $(this).html($(this).html().replace(pattern, <div

  • 0
<script language="javascript">
    $("div.post-content , .parsedsig").each(function(){
        if($(this).html().indexOf("[/tabulaScriptum]") != -1) {
             pattern = /\[tabulaScriptum=(.*?)\]([^\[]*)\[\/tabulaScriptum\]/gi
             $(this).html($(this).html().replace(pattern, "<div class='tabulaScriptum'><div class='tabulaNomen'>$1</div><div class='tabulaImpleo'>$2</div></div>")) 
        }
    });
</script>

This script is working perfectly, except for one thing… I need not to replace [tabulaScriptum=][/tabulaScriptum] in certain elements. For example, I don’t want to replace those “tags” in element that has class .code-box. Is it possible?

Clarification: element .code-box is located within .post-content.

Clarification #2: this script creates simple division spoiler. .tabulaScriptum is spoier’s body, .tabulaNomen is spoiler’s name and button which, in turn, reveals(or hides) .tabulaImpleo on click. Reveal\hide script is located in some other place, and I didn’t post it here since it doesn’t really matter.

Clarification #3: http://jsfiddle.net/PRtsw/1/ fiddle.

  • 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-11T02:30:56+00:00Added an answer on June 11, 2026 at 2:30 am

    There are a number of ways to do this. The first one that springs to mind is to use jQuery’s .not(selector) method.

    http://jsfiddle.net/nate/2hNEA/

    $(“div.post-content, .parsedsig”).not(‘.code-box’).each(function () {
    …
    });

    Update #1

    The clarification that .code-box was a child of .post-content came after I submitted this answer. That makes the problem a lot more interesting! I’d be interested to see how wiser heads than mine deal with this.

    One solution that occurs to me is to take a two-pass approach.

    First make your change just as you have implemented it, then go back and reverse the substition for .code-box divs.

    http://jsfiddle.net/nate/2hNEA/1/

    $("div.post-content .code-box .tabulaScriptum").each(function () {
        var $this = $(this);
        $this.before('[tabulaScriptum=]' + $this.text() + '[/tabulascriptum]');
        $this.remove();
    });
    

    I don’t know if this is the best way, but it seems to work.

    Update #2:

    Here’s another, simpler way:

    Fiddle: http://jsfiddle.net/nate/2hNEA/2/

    Just render the tabulaScriptum text inside any .code-box elements unrecognizable before doing your larger search/replace. Once you’ve finished, restore them.

    // Temporarily render .code-box contained tabulas unrecognizable
    $('.code-box').each(function () {
        var pattern = /\[tabula/gi;
            $(this).html($(this).html().replace(pattern, "[placeholder"));
    });
    
    // Search / Replace, as before...
    
    // Restore .code-box contained tabulas
    $('.code-box').each(function () {
        var pattern = /\[placeholder/gi;
            $(this).html($(this).html().replace(pattern, "[tabula"));
    });​
    

    Update #3:

    Thanks for including a fiddle! Here’s your example with my last solution in place.

    http://jsfiddle.net/nate/PRtsw/2/

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

Sidebar

Related Questions

This is a jQuery variant of a script (it doesn't work): <script language=javascript> $(div.post-content).each(function(){
This is my ajax post <script language=JavaScript type=text/javascript> var num = 1; function ajax_post(){
I have this script on my html page: <script language='javascript'>parent.resizeTo(550,510);</script> I'd like to add
I have this simple code that speaks for itself. <script language='javascript"> function check() {}
I have Javascript as below: <script type="text/javascript" language="javascript"> function redirectToPrevious(abcURL) { window.location.replace(abcURL); } function
I have this Javascript: <script language=javascript type=text/javascript> $().ready(function() { $('#ex2').jqm({ajax: 'view.php?id=<?=$objResult[id];?>', trigger: 'a.ex2trigger'}); });
See example: <!DOCTYPE html> <html> <head> <title>language</title> <script type=text/javascript src=http://www.google.com/jsapi> </script> </head> <body> <div
I use this script to call a javascript from codebehind. ClientScript.RegisterStartupScript(this.GetType(), Exist, <script language='javascript'>ConfirmRedirect('
I found this script: <script language=Javascript TYPE=text/javascript> var container = document.getElementById('dl'); var seconds =
<script LANGUAGE=JavaScript> function confirmSubmit() { jConfirm('Is the Appointment Confirmed?', 'Confirmation Dialog', function(r) { if(r)

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.