vote up 0 vote down star

I need to display list of news items from a database on a web form. I would like to display a fixed amount of data (say a certain height or number of characters) for each item on page load and then have a MORE button that would then display the full paragraph. I have seen how to use hide or slideUP/Down to hide the whole DIV tag, but how do you just hide part of it? Thank you.

flag

3 Answers

vote up 0 vote down check

Another suggestion apart from the others is to put from the server side the extra text in a specific span tag.

<p>some text <span class='extra'> the extra text </span></p>

And then in js toggle this span as you wish.

link|flag
Thank you Elzo- I had thought about this idea but thought it may look strange. I will give it a go and may pull in some of Mikes hacks as well. Thanks guys. – Jared Sep 23 at 13:25
vote up 1 vote down

You would need to separate the content into different HTML elements. If you don't do that when sending down the HTML, you would need to create some JQuery instructions to do it for you. Then, you can hide the elements you don't want to see, showing them later.

link|flag
vote up 2 vote down

You could try this

$("#myDiv").css("overflow","hidden").height(100);

And if you wanted to count the number of characters you could do a hack like this:

function GetHeightForChars(txt){
  return $("#myDiv").text(txt).height();
}

And keep calling that function with different amounts of text until you get a height that you like. You'd probably want to do this while the div was not attached to the DOM, or else it might look weird.

link|flag

Your Answer

Get an OpenID
or

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