This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function remplazar(){ | |
remplazarUna( document.getElementById("textarea").value, document.getElementById("findWorld").value, document.getElementById("replaceWorld").value); | |
} | |
function remplazarUna(text, busca, reemplaza ){ | |
text = text.toString().replace(busca,reemplaza); | |
//return text; | |
document.getElementById("textarea").value = text; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Practica 7</title> | |
<link href="css/bootstrap.css" rel="stylesheet"> | |
<link href="css/bootstrap-responsive.css" rel="stylesheet"> | |
<style type="text/css"> | |
body { | |
padding-top: 60px; | |
padding-bottom: 40px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | |
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
<menubar> | |
<menu label="Base de Datos"> | |
<menupopup/> | |
</menu> | |
<menu label="Tabla"> | |
<menupopup/> | |
</menu> |