up vote 0 down vote favorite
share [g+] share [fb]

I want to make it so there's only 350 characters inside the paragraph, regardless of how many characters are put into it, I only want 350 displayed.

How can I do this? The text is just in a div tag in

text.

Cheers

link|improve this question
Duplicate of the question that you asked two hours ago. – Guffa Nov 8 '09 at 18:19
It's similar, but it's a different thing. That was to do with my ASP control panel, this site is written in XHTML/CSS. – Smith Nov 8 '09 at 18:24
feedback

2 Answers

up vote 1 down vote accepted

You could put the text into a textbox, style away the fact that it's in a textbox and then limit the length on the textbox using the size attribute.

However, the ideal solution would be to limit it on the server side.

link|improve this answer
don't forget to disable the text box so people can't edit the contents! – JasonWyatt Nov 9 '09 at 0:20
feedback

You can also inspect the contents via the DOM in JavaScript if you feel like a client-side solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.