I have the html content with following value in javascript:
$('#hotel').val(9864);
var hotel_id = $('select#hotel option:selected').val();
$.ez( 'ezjscvincci::setHotelDetails', {arg1: hotel_id}, function( data )
{
computeHotelAvailabilityLink();
});
now i want to get the 9864 ID out of those javascripts by Regex, could you suggest me an idea? Thanks