Tagged Questions
0
votes
2answers
77 views
jQuery: copy contents, strip <p> tags, and create linebreaks
I've succesfully created a behavior that copies the contents of a div container into a textarea field:
$('a').click(function() {
var contents = $('.content').html();
...
0
votes
1answer
63 views
Replace without Boost
I have to strip some XML tags from the text and leave their values.
Example
text text <tag>tag_value</tag> text text <a href="example.com">example.com</a>
->
text text ...
-1
votes
2answers
234 views
Need optimized XSLT recursive template to strip html tags.
I am using the following template for removing the html tags from my xml content. It is working for few of the xmls but failing for the few xmls, with stack over flow error due to the recursive call. ...
0
votes
0answers
121 views
HTML Tags being Stripped
What can I add to the following to stop my html tags from being stripped out?
<?php echo $item->displayIntrotext; ?>
Following are being ignored:
<p></p> & <br />
...
0
votes
1answer
79 views
How can I use this code to strip html tags form a form field?
I am using some basic script to strip HTML tags. Here is the code for that I am using. How can I get it to do it to a text field named ['msge'] when it's posted?
function transform_HTML($string, $len ...
-1
votes
4answers
427 views
sed and lazy search on specific html tag with id
How could I remove said html tag with sed?
Example:
<div id="header"><span id="navbar">... Content ...</span></div>
What I tried:
sed 's!<div ...
1
vote
1answer
130 views
Keeping links in SimplePie description
I am using SimplePie to feed blog entries to a non-Wordpress website. By default it strips out all HTML tags, but there is a way to keep them in, by inserting this code near the top of your page:
...
0
votes
1answer
300 views
how to strip all child tags in an xml tag but leaving the text to merge to the parens using lxml in python?
How can one tell etree.strip_tags() to strip all possible tags from a given tag element?
Do I have to map them myself, like:
STRIP_TAGS = [ALL TAGS...] # Is there a built in list or dictionary in ...
0
votes
1answer
562 views
jquery ajax response strips html <td> tags
I have a javascript / jquery function which is supposed to replace a row in a table with an "Edit Mode" version of the same row. it fires on the onclick event of a button on the row and a simplified ...
1
vote
1answer
875 views
Drupal removes tags from body of page
How do I stop Drupal from removing tags from the body of a page??
If I create a page that is organized such as
<p>blah blah</p>
<p>blah blah 2</p>
When I go back ...
0
votes
0answers
1k views
convert html to flat text in iOS [duplicate]
Possible Duplicate:
HTML character decoding in Objective-C / Cocoa Touch
I have some html text in a feed and I want to parse this to show in a tableviewcell.
I handle the tags but there is ...
2
votes
2answers
946 views
Is there a way to delete all embed, object, script tags in php?
Is it possible to delete all embed, object, script tags in php?
1
vote
2answers
1k views
PHP MySql display returned content without html tags being stripped
I have a column in SQL 'Text' datatype and inside I have content within html tag, eg somecontent: onetwo... I want the mysql query to echo out the databases contents without stripping the html tags ...
0
votes
4answers
254 views
How do I strip custom tags from text in a submitted html form using PHP/Perl?
I have a news submission form. I want it to be secure from XSS and the like by stripping all html tags. Then I will convert all other tags with this format
[tagname attributes][/closetagname]
To ...
1
vote
3answers
929 views
How to extract image filename from style/background-image tag?
I found lots of posts regarding estracting a filename from an img-tag, but none from a CSS inline style tag. Here's the source string
<span style="width: 40px; height: 30px; background-image: ...
11
votes
4answers
4k views
How can I use strip_tags in regular ruby code (non-rails)?
I need to turn html into plain text and theres a nice function that does that in ActionView's SanitizeHelper.
But I have trouble understanding how I can reference it and use it in a simple test.rb ...
1
vote
3answers
552 views
Removing everything from string outside specified tags (PHP)
Question has been updated to exclude regex as a possible solution.
I'm trying to build a php function which will allow me strip everything outside of specified tags while preserving the specified ...
2
votes
4answers
8k views
php strip_tags: allows <br />?
How it is possible to allow <br /> in strip_tags() or any way I can get around to it?
<?php
$text = '<p>Test <br />paragraph.</p><!-- Comment --> <a ...
1
vote
1answer
2k views
Does objective c have a strip tags function?
I am looking for an objective C function (custom or built-in) that strips html tags from a string, similar to PHP's version that can be found here:
http://php.net/manual/en/function.strip-tags.php
...
0
votes
3answers
674 views
PHP - Removing the effect of HTML tags in string - BUT displaying them as well?
Consider strip_tags() .
strip_tags("<b>TEXT</b>");
Output:
TEXT
But what if i want to nullify the effect of the tags but display them as well?
Output:
<b>TEXT</b>
...
1
vote
5answers
3k views
Strip specific tag from parent (jQuery)
HTML:
<div class="featured">
<h4><a href="#">Title 1</a></h4>
<a href="#"><img src="image.png" class="image"/></a>
<p><a ...
0
votes
3answers
496 views
PHP tags. How to minimize the tags usage in php script
I am using an ask answer script on a website and it converts the headline title words into the search query tags automatically.
For example: "Who are you?" is converted into tags 'Who' 'are' and ...
-1
votes
1answer
4k views
Strip tags using jQuery?
HTML:
<table>
<tr>
<td>
<a href="#">link</a>
</td>
</tr>
</table>
I want to: FIND 'link' in 'a' and STRIP ALL parent tags ...
10
votes
2answers
5k views
Strip HTML tags and its contents
I'm using DOM to parse string. I need function that strips span tags and its contents. For example, if I have:
This is some text that contains photo.
<span class='title'> ...