I am trying to add a link to read more text at the end of a paragraph. I would like this link to appear inside the paragraph at the end like this:

I want the paragraph to be added with ... and a link for the link.
At the moment, I do not want the reading link to be made, as I will add my own function when I get the link to the place. I'm just trying to find a way for the link to appear like this.
I considered the following jquery script, however this seems to work on the number of characters and shortens the last word for any character value, and then does not display the way I want it (the link appears under the paragraph). It also contains a function for what happens when a link is clicked, which due to my lack of features with jquery, I was unsuccessful when editing.
$(function(){ /* to make sure the script runs after page load */ $('.customer_experience').each(function(event){ /* select all divs with the customer_experience class */ var max_length = 250; /* set the max content length before a read more link will be added */ if($(this).html().length > max_length){ /* check for content length */ var short_content = $(this).html().substr(0,max_length); /* split the content in two parts */ var long_content = $(this).html().substr(max_length); $(this).html(short_content+ '<a href="#" class="read_more"><br/>read more...</a>'+ '<span class="more_text" style="display:none;">'+long_content+'</span>'); /* Alter the html to allow the read more functionality */ $(this).find('a.read_more').click(function(event){ /* find the a.read_more element within the new html and bind the following code to it */ event.preventDefault(); /* prevent the a from changing the url */ $(this).parents('.customer_experience').find('.more_text').show(); /* show the .more_text span */ }); } }); });
Do I need to use jQuery at all to get the result I'm looking for? Can this be done only with CSS? I don't write jQuery at all, so I'm a little lost.
Any help or hints on where I can go with this would be greatly appreciated.
Edited to add HTML marking
<div class='comments_container'> <img src='images/comment-icon.png'/> <h1 class='comments_title'>Customer experience</h1> <p class='customer_experience'>$customer_exp_one</p> </div>
This paragraph is .customer_experience .
jquery css
Richard bell
source share