Tagged Questions

3
votes
2answers
3k views

Escape apostrophe when passing parameter in onclick event

I'm passing the company name to an onclick event. Some company names have apostrophes in them. I added '.Replace("'", "'")' to the company_name field. This allows the onclick event to fire, but ...
1
vote
3answers
262 views

how to encode apostrophes for a webpage

i am using the cluetip plugin and the simple use case is to to put the content in a title attribute, like below: <a title='Top title|detail content'>Text</a> i am now running into ...
1
vote
3answers
301 views

Why is HTML encoding apostrophes in Rails 2 giving an unexpected result?

I'm using h to HTML encode some text in Rails 2, but I'm having problems with apostrophes. To be more exact, I'm finding that my apostrophes end up as &#39; which is obviously not want I want to ...
0
votes
0answers
23 views

Are apostrophes valid containers for HTML element attribute values?

Usually HTML element attribute values are marked with a quotation mark, like <input type="hidden" value="test" /> Sometimes, however, you see code like <input type='hidden' value='test' ...
0
votes
1answer
206 views

Render Apostrophe of Twitter feed is not correct in IE

Check out this page using IE : http://search.twitter.com/search?q=%23testvoorklant You will find out the apostrophe is rendered as & apos ;! If I want to use these feeds in my website, how should ...
0
votes
1answer
171 views

Apostrophe (Smart Quote) in search throws Apache 400 Bad Request

I have a search form in my web application that throws an Apache 400 Bad Request error when you search using an apostrophe (smart quote, i.e. ’ not '). This happens when someone copy and pastes from ...
0
votes
2answers
946 views

Apostrophes replacing quotation marks in script tag in input field

I have this input in a form: <input type="text" value="<script src='/js/script.js' type='text/javascript'></script>" name="embed"/> The quotations in general have to be double, ...