ItSolutionStuff.com

How to Get Max Attribute Value in JQuery?

By Hardik Savani β€’ January 31, 2023
Javascript HTML jQuery

In this profound tutorial, we will learn jquery get max attribute value. let’s discuss about jquery get custom attribute value by class. I would like to show you jquery find max attribute value. step by step explain find maximum value of attribute jquery.

Sometimes, you have a many tag with same class and attribute with value, but you need to find maximal value of attribute from that conman class, In bellow you have same HTML tag:

Now, you require to get max value, i mean you need to 5, because that is big value from other, so you can get maximal value from this way:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title></title>

</head>

<body>

<ul>

<li class="test" data-id="3">hi</li>

<li class="test" data-id="5">hey</li>

<li class="test" data-id="1">hello</li>

</ul>

<script type="text/javascript">

var max = 0;

$('.test').each(function() {

var value = parseInt($(this).data('id'));

max = (value > max) ? value : max;

});

alert(max);

</script>

</body>

</html>

I hope it can help you...

Tags: jQuery
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

JQuery Radio Button Change Event Example

Read Now β†’
β˜…

JQuery Remove Multiple Values from Array Example

Read Now β†’
β˜…

Calculate Number of Days Between Two Dates in JQuery

Read Now β†’
β˜…

JQuery Get Selected Dropdown Value on Change Event Example

Read Now β†’
β˜…

How to Disable Text Selection using JQuery?

Read Now β†’
β˜…

How to Get Selected Radio Button Value in JQuery?

Read Now β†’
β˜…

JQuery Redirect to Another Page After 5 Seconds Example

Read Now β†’
β˜…

Add Edit Delete Table Row Example using JQuery

Read Now β†’
β˜…

How to Disable Browser Back Button using JQuery?

Read Now β†’
β˜…

How to Remove Duplicate Object from Array in JQuery?

Read Now β†’
β˜…

JQuery Datepicker Example using JQuery UI JS

Read Now β†’
β˜…

How to Convert Line Breaks to br in jQuery ?

Read Now β†’