I scraped products from www.jumia.com this scraping properly working on desktop or laptop systems. but when i will opens my page into mobile phones then scraped product list will not shows. is this possible to scrape products for mobile devices?
please help me and give me a possible solution following code i used:-
<?php <div class="frstsection">
<div class="selectlist">
<p>Jumia Products List</p>
<select id="selectJum" multiple class="form-control">
<?php
foreach ($html->find("a[class=itm-link]") as $key => $element) {
//echo '<pre>';
if (!empty($element->attr['title'])) {
?>
<option value="<?php print($element->attr['title']); ?>" >
<?php
print($element->attr['title']);
$i++;
}
//print('not found');
}
?>
</select>
</div>
<div class="clearfix"></div>
</div> ?>