• Page 1 of 1
  • 1
Forum moderator: bigblog  
uCoz Community » For Webmasters » Design Customization » how to remove this char on auto tag script
how to remove this char on auto tag script
fadly
Posts: 73
Reputation: 0

Message # 1 | 4:12 AM
entry tittle replace text jquery (2017), on my tag replace,text,jquery,(2017)
how to remove ( ) , make like this replace,text,jquery,2017

my code auto tag

Code
<script type="text/javascript">
var result = [];
$('input[name="name1"], input[name="title"]').change(function() {
for (var i=0; i<$(this).val().split(' ').length; i++) {
if ($(this).val().split(' ')[i].length > 3) {
result[i] = String($(this).val().split(' ')[i]);
}
$('input[name*="tags"]').val(' ' + result);
}
while($('input[name*="tags"]').val().search(/,,/) != -1) {
$('input[name*="tags"]').val($('input[name*="tags"]').val().replace(/,,/m,',').replace(/^\,/,''));
}
});
</script>


Added (2017-03-30, 4:12 AM)
---------------------------------------------
no body know???? wink wink


blizar10
Posts: 96
Reputation: 0

Message # 2 | 1:56 AM
Quote fadly ()
entry tittle replace text jquery (2017), on my tag replace,text,jquery,(2017)
how to remove ( ) , make like this replace,text,jquery,2017


For now, juste remove () in:
Post edited by blizar10 - Friday, 2017-03-31, 2:01 AM
fadly
Posts: 73
Reputation: 0

Message # 3 | 9:05 AM
Quote blizar10 ()
For now, juste remove () in:


i have edit on manual, why not use automatic ???

blizar10
Posts: 96
Reputation: 0

Message # 4 | 3:36 PM
Quote fadly ()
i have edit on manual, why not use automatic ???


Try this in the page where your tags appear.

Code

<script>
$("#IdOfYourTags noindex").html($("#IdOfYourTags noindex").html().replace(/\(/g, ""));
$("#IdOfYourTags noindex").html($("#IdOfYourTags noindex").html().replace(/\)/g, ""));
</script>


Don't forget to change the 4 "IdOfYourTags"
For me, it's: tags

Enjoy ! biggrin
Post edited by blizar10 - Friday, 2017-03-31, 8:13 PM
fadly
Posts: 73
Reputation: 0

Message # 5 | 8:07 AM
Quote blizar10 ()
Try this in the page where your tags appear.

Code
<script>
$("#IdOfYourTags noindex").html($("#IdOfYourTags noindex").html().replace(/\(/g, ""));
$("#IdOfYourTags noindex").html($("#IdOfYourTags noindex").html().replace(/\)/g, ""));
</script>  


Don't forget to change the 4 "IdOfYourTags"
For me, it's: tags

Enjoy ! biggrin


not working for me.. but thanks for u answer bro

blizar10
Posts: 96
Reputation: 0

Message # 6 | 6:04 PM
Give me the url with your tags.
I will make it works biggrin

I used the same code on my website!
Post edited by blizar10 - Saturday, 2017-04-01, 6:08 PM
fadly
Posts: 73
Reputation: 0

Message # 7 | 11:59 PM
here the link... http://lk21.do.am/blog/the_marine_5_battleground_2017/2017-03-29-90

look the screen shots



i want change (2017) with 2017...so i want remove "(" and ")" thanks sad
Attachments: 8526783.png (18.0 Kb)

blizar10
Posts: 96
Reputation: 0

Message # 8 | 4:33 AM
Code
<script>
$(".tags.info noindex").html($(".tags.info noindex").html().replace(/\(/g, ""));
$(".tags.info noindex").html($(".tags.info noindex").html().replace(/\)/g, ""));
</script>
fadly
Posts: 73
Reputation: 0

Message # 9 | 7:37 AM
Quote blizar10 ()
<script>
$(".tags.info noindex").html($(".tags.info noindex").html().replace(/\(/g, ""));
$(".tags.info noindex").html($(".tags.info noindex").html().replace(/\)/g, ""));
</script>


not working too.. i found this script and working but its change to text and a href change to text

Code
<script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").text(function(index, text) {
          return text.replace('(', '');
  });
    });
  </script>
  <script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").text(function(index, text) {
          return text.replace(')', '');
  });
    });
  </script>


Attachments: 0472303.png (44.0 Kb)

blizar10
Posts: 96
Reputation: 0

Message # 10 | 5:27 PM
I not used good class. Try again with:

Code

<script>
$(".others .tags noindex").html($(".others .tags noindex").html().replace(/\(/g, ""));
$(".others .tags noindex").html($(".others .tags noindex").html().replace(/\)/g, ""));
</script>


Or, try to replace text by html like this:

Code

<script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").html(function(index, text) {
          return html.replace('(', '');
  });
    });
  </script>
  <script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").html(function(index, text) {
          return html.replace(')', '');
  });
    });
  </script>
Post edited by blizar10 - Sunday, 2017-04-02, 5:28 PM
fadly
Posts: 73
Reputation: 0

Message # 11 | 6:12 AM
Quote blizar10 ()
Or, try to replace text by html like this:

thanks but your code its wrong..

Code
<script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").html(function(index, text) {
          return html.replace(')', '');
  });
    });
  </script>


il change like this

Code
<script type="text/javascript">
    $(document).ready(function() {
     $(".others .tags noindex").html(function(index, html) {
          return html.replace(')', '');
  });
    });
  </script>

its working now. thanks brow
smile :)

Post edited by fadly - Wednesday, 2017-04-05, 6:35 AM
blizar10
Posts: 96
Reputation: 0

Message # 12 | 6:20 PM
Good ! biggrin
sunshinechen218
Posts: 3
Reputation: 0

Message # 13 | 6:16 AM
I just want to get answers about how to fix the same issue easily. Lucky to get answers on here. Thanks.
uCoz Community » For Webmasters » Design Customization » how to remove this char on auto tag script
  • Page 1 of 1
  • 1
Search: