Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following HTML

<div id="example">
  ...some text...
  <script type="text/javascript">
    ... some javascript...
  </script>
</div>

How to get content of #example but also with the JavaScript?

$("#example").html(),
$("#example").text(),     
$("#example").val()     

all don't work.

share|improve this question
4  
your javascript does not belong there – Natrium Sep 16 '09 at 9:25
1  
$.html() should have worked. i wonder why. – mauris Sep 16 '09 at 9:29

7 Answers

The html() method should work for you. Are you sure you are running the code after the DOM is completed?

$(document).ready(function(){
   alert($("#example").html());
});
share|improve this answer
.html() will strip out all <script> tags from returned html. – Shenaniganz Jul 25 '12 at 18:01

Working Demo

You can use

html(): Get the html contents (innerHTML) of the first matched element.

var contents = $("#example").html();
share|improve this answer
1  
when i use $("#example").html(); i get only content of div, but without that javascript, it ignores all javascript – mm. Sep 16 '09 at 9:35

Just use:

$("#example").get().innerHTML;

That gets the DOM object from the jQuery object and spits out the raw content.

share|improve this answer
think you meant: $("#example").get(0).innerHTML; Get with no params returns an array. This also suffers from the same issues though I think. We have a problem where all text inside tags is being cap'sed. – M Thelen May 26 '11 at 13:42
var txt = document.getElementById("example").innerHTML;

This will fetch you the innertext of div. Write this line at end of your body tag. Or call it in a method which will be called after body onLoad

share|improve this answer

Just tried it and $('#example').html() does work in isolation:

<html>
<head>    
        <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js' lang='text/javascript' />    
</head>
<body>
<div id="example">
  ...some text...
  <script type="text/javascript">
    ... some javascript...
  </script>
</div>

<script>
alert($('#example').html());
</script>

</body>
</html>
share|improve this answer
<!--This code will work -->
<html>
<head>    
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" lang='text/javascript' />-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<script type="text/javascript">
$(document).ready(function() {

//alert($('#example p').html());
alert($('#example').text());

alert($('#example #1').text());
alert($('#example #2').text());
alert($('#example #3').text());
alert($('#example #4').text());
//alert($("#example p").get().innerHTML);
//alert('hey');


}); 
</script>
</head>
<body>
<div id="example">
  <p>...some text...</p>
  <div id="1">
    Here's 1
  </div>
  <div id="2">
    Here's 2
  </div>
  <div id="3">
    Here's 3
  </div>
  <div id="4">
    Here's 4
  </div>

</div>

</body>
</html>
share|improve this answer
You may want to add some description to your solution to explain what you are doing and why. – goettschkes Oct 20 '12 at 9:00
menuItem.firstChild.innerHTML

Perhaps this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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