Changeset 481503
- Timestamp:
- 12/28/2011 02:36:00 PM (14 years ago)
- Location:
- get-link-meta/trunk
- Files:
-
- 2 edited
-
getlinkmeta.php (modified) (1 diff)
-
geturl.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
get-link-meta/trunk/getlinkmeta.php
r474965 r481503 51 51 52 52 <input type="Hidden" name="versteckt"> 53 <input type="Button" onclick="getURL('<?php bloginfo('wpurl'); ?>')" value=GetDescription>53 <input type="Button" onclick="getURL('<?php echo plugins_url( 'getdescription.php', __FILE__ ); ?>')" value=GetDescription> 54 54 </form> 55 55 <div id="descriptionframe">Click on button to get description</div> -
get-link-meta/trunk/geturl.js
r474952 r481503 1 1 function getURL (blogurl) 2 2 { 3 var adress = blogurl + " /wp-content/plugins/get-link-meta/getdescription.php?linkurl=";3 var adress = blogurl + "?linkurl="; 4 4 var link = document.getElementById('link_url').value 5 5 var getUrlLink = adress + link … … 8 8 ifrm.style.width = 95+"%"; 9 9 ifrm.style.height = 200+"px"; 10 document.getElementById('descriptionframe').appendChild(ifrm); 10 document.getElementById('descriptionframe').replaceChild(ifrm, document.getElementById('descriptionframe').firstChild) 11 //document.getElementById('descriptionframe').replaceChild(ifrm); 11 12 } 12 13
Note: See TracChangeset
for help on using the changeset viewer.