how to identify an html div id which starts with some pattern using jquery
- by dexter
normally we use something like this to identify Id using jquery
$("#PhotoId").html('some html');
here we get the html (say div) having id 'PhotoId'
what if the id is partially dynamic i.e.
lets say there are multiple photoes
each id would start with 'PhotoId'
EX.
$("#PhotoId" + result.Id).html(some html');
NOW,
i want to identify…