Javascript examples for jQuery:Tag Traversing
Find by matching id using JQuery
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.0.js"></script> <script type="text/javascript"> $(window).load(function(){/*from w w w . ja v a2 s. c om*/ var f_id = $("input[id ^='test-id-']"); console.log(f_id[0].id); }); </script> </head> <body> <input id="test-id-1234"> </body> </html>