how to get last value in srcset property in jquery?

MohNj

my code is :

<figure class="im-entry-thumb clearfix">
    <img width="770" height="480" src="http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-770x480.jpg" class="attachment-post size-post wp-post-image" alt="" srcset="http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-770x480.jpg 770w, http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-280x175.jpg 280w" sizes="(max-width: 770px) 100vw, 770px">  </figure>

I want to get my last value srcset. Means:

http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-280x175.jpg

please help.tanks

JYoThI

Get like this use split() and pop()

//alert($('img').attr('srcset').split(',').pop());

console.log($('img').attr('srcset').split(',').pop());

console.log($('img').attr('srcset').split(',').pop().trim().split(' ')[0]);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<figure class="im-entry-thumb clearfix">
    <img width="770" height="480" src="http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-770x480.jpg" class="attachment-post size-post wp-post-image" alt="" srcset="http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-770x480.jpg 770w, http://sample.com/blog/wp-content/uploads/2017/05/Untitled-1-280x175.jpg 280w" sizes="(max-width: 770px) 100vw, 770px">  </figure>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get the value of last assigned property in Sass or CSS?

From Dev

How to get the value of last assigned property in Sass or CSS?

From Dev

How to get the last value selected from dropdown and disable it using jquery

From Dev

How to get value of a property?

From Dev

How to get jquery returned value to a property of model object in Razor Page

From Java

How to get the last value of an ArrayList

From Dev

jQuery .html only get last value of JSON

From Dev

How to get css property value

From Dev

Property reflection - How to get value?

From Dev

How to get css property value

From Dev

Get numeric value of webkit filter property with jQuery

From Dev

jQuery get/select element by property value

From Dev

Unable to get value of the property 'toLowerCase', JQUERY 1.10.2

From Dev

Get numeric value of webkit filter property with jQuery

From Java

In React how to get a property value of an object using another property value?

From Dev

How to get the attribute value of the last element?

From Dev

how to get specific last decimal float value

From Dev

How to get the last node value in xml

From Dev

How to get the last value from the database

From Dev

How to get last record / max value

From Dev

How to get last value when subscribing to an Observable?

From Dev

How to get last value with condition in postgreSQL?

From Dev

How to get last value from VLookup?

From Dev

How to get the last node value in xml

From Dev

How to get the last value from the database

From Dev

How to get the last value from multiple checkbox?

From Dev

How to get last recent value only

From Dev

how to get last time stamp value:mysql

From Dev

How to get value of last node added to the database

Related Related

HotTag

Archive