Answers for "how to get value attribute in jquery"

8

get attribute value jquery

var some_var = $( some_jquery_selector ).attr( 'some_attribute_name' );
Posted by: Guest on March-20-2020
1

jQuery - Get Content and Attributes

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("#btn1").click(function(){
    alert("Text: " + $("#test").text());
  });
  $("#btn2").click(function(){
    alert("HTML: " + $("#test").html());
  });
});
</script>
</head>
<body>

<p id="test">This is some <b>bold</b> text in a paragraph.</p>

<button id="btn1">Show Text</button>
<button id="btn2">Show HTML</button>

</body>
</html>
Posted by: Guest on December-06-2020
0

jquery get element attribute

<div data-role="page" data-last-value="43" data-hidden="true" data-options='{"name":"John"}'></div>
Posted by: Guest on June-10-2021

Code answers related to "how to get value attribute in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language