vote up 0 vote down star

Hello, I have a div:

<div id="inner">
    Some content...
</div>

Now I need to load some file into inner-block, but save it's old content.

$('#inner').load( 'pathToFile.html' );

Will replace old content of div.

Thanks.


So, as I understand my code should be:

old = $('#inner').html();
$('#inner').load( 'pathToFile.html' );
$('#inner').html( old + $('#inner').html() );

?

flag

Sounds like you don't want to just save the old content but append to it. That's why you're getting different answers. – Kai Oct 9 at 15:46
He means 'save the old content' as in 'leave it there', I assumed. – thenduks Oct 9 at 15:47
Very confusing as to what you are looking for with how you asked your question. – Matt Huggins Oct 9 at 16:20

4 Answers

vote up 3 vote down check

I'd recommend against using stuff like 'load' and the other ajax helpers. They're just wrappers around $.ajax. Off the top of my head, maybe you want:

$.ajax( {
  url: 'pathToFile.html',
  type: 'get',
  success: function( r ) {
    $('#inner').append( r );
  }
} );
link|flag
+1 was about to write the same. – Konstantinos Oct 9 at 15:46
What's wrong with using an ajax helper? I've used them myself with few problems. – Kai Oct 9 at 15:47
Thanks, I'll remember this. – Ockonal Oct 9 at 15:48
The helpers are simply wrappers on $.ajax and they're light on features. Of course $.ajax is a helper, what I mean is the ones that wrap it. For example, you can't have a failure handler with $.get. It's very little extra code to just use $.ajax, you can omit features you don't need, and it's clearer for everyone reading it. All IMO, of course :) – thenduks Oct 9 at 15:49
@Ockonal: np! :) – thenduks Oct 9 at 15:51
vote up 1 vote down

Instead of the way you doing you need to look at these functions ..

append( content )   Returns: jQuery

Append content to the inside of every matched element.

appendTo( selector )    Returns: jQuery

Append all of the matched elements to another, specified, set of elements. As of jQuery 1.3.2, returns all of the inserted elements.

prepend( content )  Returns: jQuery

Prepend content to the inside of every matched element.

prependTo( selector )   Returns: jQuery

and yes @thenduks method is a better way.

link|flag
vote up 0 vote down
var oldHtml = $('#inner').html();
$('#inner').load( 'pathToFile.html' );
link|flag
vote up 0 vote down
var originalContent=$('#inner').html();
$('#inner').load( 'pathToFile.html' );

is that what you are after?

link|flag

Your Answer

Get an OpenID
or

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