php - Please help me: modify iframe content -


i want modify iframe of source http://www.mtel.ba/imenik/index.php

i want hide , choose 1 selected default value list.

<div class="menu-list">                     <select name="administrative_unit_id">                         <option value="" selected="selected">svi gradovi</option>                         <option value='262'>banja luka (051)</option><option value='301'>bijeljina (055)</option> 

i want made phone book 1 city. possible? , how? try jquery , file contents .... thanks

if site on cross domain use proxy page.

create new php page that

<?php   echo '<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>'; //insert jquery here  $file = file_get_content('http://www.mtel.ba/imenik/index.php');  echo $file;  echo "<script>"; echo "";//jquery script here echo "</script>"; 

then insert page iframe


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -