top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In Mobile browsers not able to load base64 data uri for an <audio> tag

+1 vote
258 views
<audio src="data:audio/mp3;base64,//MkxAA.......></audio>

The above code is working fine in web browsers but not working in mobile browsers.Please help any one what is the problem.

posted Sep 2, 2014 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+3 votes

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> ?>
...