Created
January 6, 2018 10:40
-
-
Save shmdhussain/75b66485ef4075470f46e359eef8b01a to your computer and use it in GitHub Desktop.
Get the Options HTMl of dropdown which is selected in debugger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var aa=[]; | |
$($0).find("option").each(function(i,el){ | |
var htmlCont = $(this).html(); | |
aa.push(htmlCont) | |
console.log($(this).html()); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment