jacinmontava  [ Profile ]

Sort by: Date / Title /

  1. 1 month ago
    1. if ($("div#capa_1").height() > $("div#capa_2").height()) {
    2.             $("div#capa_2").height($("div#capa_1").height())
    3. }else{
    4.             $("div#capa_1").height($("div#capa_2").height())
    5.  }
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/2093"></script>
  2. 1 year ago
    1. function ucfirst_low($c){
    2.         $cadena = strtr(strtolower($c), "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÜÚ","àáâãäåæçèéêëìíîïðñòóôõöøùüú");
    3.         $cadena = ucwords(strtolower($cadena));
    4.         return($cadena);
    5. }
    6.  
    7. function ucfirst_upp($c){
    8.         $cadena = strtr(strtoupper($c),"àáâãäåæçèéêëìíîïðñòóôõöøùüú", "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÜÚ");
    9.         $cadena = ucwords(strtolower($cadena));
    10.         return($cadena);
    11. }
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1803"></script>
  3. 1 year ago
    1. <STYLE>
    2.  H1.SaltoDePagina
    3.  {
    4.      PAGE-BREAK-AFTER: always
    5.  }
    6. </STYLE>
    7.  
    8. <!--En el sitio en que quieras forzar el salto de página deberás poner el tag h1 aplicando el estilo SaltoDePagina definido anteriormente-->
    9.  
    10. <H1 class=SaltoDePagina> </H1>
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1802"></script>
  4. sponsorised links
  5. 1 year ago
    1. function alertPhp($texto){
    2.         echo "<script type='text/javascript'>alert('".$texto."');</script>";
    3. }
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1783"></script>
  6. 1 year ago
    1. <script type="text/javascript">
    2. function pulsar(e) {
    3.   tecla = (document.all) ? e.keyCode : e.which;
    4.   return (tecla != 13);
    5. }
    6. </script>
    7. <!-- -->
    8. <form action="loquesea.asp" onkeypress = "return pulsar(event)">
    9. <input type="text" />
    10. <input type="submit" />
    11. </form>
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1695"></script>
  7. 1 year ago
    1. function stopRKey(evt) {
    2. var evt = (evt) ? evt : ((event) ? event : null);
    3. var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
    4. if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
    5. }
    6. document.onkeypress = stopRKey;
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1694"></script>
  8. 1 year ago
    En los parámetros del flash o FLV incluir
    <param name="wmode" value="transparent">
    
    Ahora un paso MUY IMPORTANTE para que funcione en todos los navegadores
    
    Para que tambien funcione en Firefox y Opera, etc.incluir el codigo (wmode="transparent") dentro de la etiqueta EMBED, y quede algo así como:
    <embed src="miflash.swf" wmode="transparent" quality="high" etc etc.
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1660"></script>
  9. 1 year ago
    1. <script language="JavaScript">
    2. function Abrir_ventana (pagina) {
    3. var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=690, height=400, top=100, left=80";
    4. window.open(pagina,"",opciones);
    5. }
    6. </script>
    7.  
    8. <body onLoad ="Abrir_ventana('pop.html')" >// abrirlo cuando carga la pagina
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1393"></script>
  10. 1 year ago
    1. <?php
    2.  
    3. $dbhost = "servidor"; $dbuser = "usuario"; $dbpassword = "clave"; $dbname = "base_de_datos";
    4. mysql_connect($dbhost,$dbuser,$dbpassword);
    5. $tablas = mysql_list_tables($dbname);
    6.  
    7. while (list($tabla) = mysql_fetch_row($tablas)) {
    8. echo $tabla."<br />";
    9. } ?>
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1378"></script>
  11. 1 year ago
    1. <?php
    2. function is_chrome(){
    3. return(eregi("chrome", $_SERVER['HTTP_USER_AGENT']));
    4. }
    5.  
    6. if(is_chrome()){
    7. echo 'Tu estas usando el navegador Google Chrome.';
    8. }
    9. ?>
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1308"></script>

First / Previous / Next / Last / Page 1 of 5 (44 posteets)