top of page

          ​  ALERT MESSAGE - MENSAJE DE ALERTA - SENTENCIA SIMPLE


 
Alert Message Options box visitors :

script (marquee) without touching the template (CSS).


Alert_simple_without_confirmation_of_message_at_site:



There are other ways to place it, with ongoing dialogues,

Another way to send a message with a flash intro, for example, when a visitor accesses the site.

Do not abuse the scripts, can be irritating sometimes for visitors.






Alert_simple_without_confirmation_of_message_at_site:



Aviso, sentencia o caja de mensaje de alerta al visitante.

script (marquee) sin tocar la plantilla (CSS).



También hay otras formas de situarlo, con dialogos continuos,

Otra forma de enviar un mensaje, con un intro en flash, por ejemplo, cuando el visitante accede al lugar.

No abuse de los scripts, puede ser irritante en algunos casos para los visitantes.



___________________________________________________________________________
OPTION_1 :

Elemental/basic Intro
 

Alert_simple_without_confirmation_of_message_at_site:



<script language="JavaScript" type="text/javascript">
alert("HERE YOU TEXT MESSAGE");
</script>

____________________________________________________________________________
OPTION_2 :

With a call :



<script type="text/javascript">
window.onload= loaded;
function loaded()
{
alert('HERE YOU TEXT MESSAGE');
}
</script>
_____________________________________________________________________________

OPTION_3 :

Not recognized in many cases, depends on the browser or settings :

 

<script type="text/javascript"><!--
window.alert("Welcome");
--></script>
   



<script type="text/javascript"><!--
var ques = window.confirm("TEXT_MESSAGE:HELLO_WORLD ! SALUTATIONS !");
if (ques) alert("Corect");
else alert("Incorrect");
--></script>



<script type="text/javascript"><!--
var msg = window.prompt("*****Thank_you_to_WIX.COM*****", "Yes!!");
alert(msg);
--></script>


______________________________________________________________________________
OPTION_4 :
Message alert box visitor with confirmation OK or Cancel :

<script type="text/javascript">
confirm('This site contains explicit contents + 18 age. Are you sure you want to continue?');
if (confirm('Are you sure?')) {
window.location = "http://PUT YOU SITE OR URL";
}
else {
window.location = "http://www.google.com/";
}
</script>

________________________________________________________________________________

​</div></div></marquee>

..add this code to the end, and together, if not recognized.


You can add tabs (spoilers) or attached images ..
make the message even floating or moving.

​..añadimos éste código al final, y junto, por si no se reconoce.


Puede añadir pestañas (spoilers) o imagenes adjuntas..
incluso hacer el mensaje flotante o en movimiento.



More_Message_Alert_at_Visitor :
[Alert/Message - Sentencia/Mensaje script]
http://www.quackit.com/javascript/javascript_alert_box.cfm

<p>Alert Box:</p>
<input type="button" onclick="alert('
Wow... you sure do know how to click!');" value="Click me..." />
<div class="more-info">
<p>More info: <a href="
http://www.quackit.com/javascript/javascript_alert_box.cfm">JavaScript Alert</a></p>
</div>



For courtesy of:
Por cortesía de:

http://www.quackit.com/javascript/examples/


..........................................................................................................

For confirmed Mesasage put this .. please ..:

<p>Confirm Box:</p>
<script type="text/javascript">
function confirmHappy()
{
var happiness=confirm("
Are you sure you're happy?");
if (happiness==true)
  {
  alert("
Wow! You seem really happy!");
  }
else
  {
  alert("
You should get out more!");
  }
}
</script>
<input type="button" onclick="confirmHappy()" value="
If you're happy and U know it, click me!" />
<div class="more-info">
<p>More info: <a href="
http://www.quackit.com/javascript/codes/javascript_confirm.cfm">JavaScript Confirm</a></p>
</div>





For courtesy of:
Por cortesía de:

http://www.quackit.com/javascript/examples/



 

______________________________________________________________________________________

OPTION_5 :

Alert_Message_at/for_the_Visitor :


Pop-Up Message When Visiting Page

<script type="text/javascript">
var copiedfrom='www.imvucodes.net';
alert('
TEXTHERE');
</script>
Pop-Up Message When Leaving Page

<script type="text/javascript">
var copiedfrom='www.imvucodes.net';
var msg='
TEXTHERE';
window.onunload=function() { alert(msg); };
</script>
Pop-Up Message With Visiting Avatar Name

<script type="text/javascript">
alert('TEXTHERE'+document.getElementById('mininav-avname').innerHTML+'!');
</script>





Courtesy of:
Por cortesía de :

http://warrpriestcodes.weebly.com/



_______________________________________________________________________________________



on Body Template CSS :

http://www.javascriptkit.com/script/cut115.shtml
http://mistonline.in/wp/alert-a-message-before-leaving-a-web-page-using-javascript/
http://www.goldsofts.com/script/494/16822/AlertIt_scroller.html
http://www.sourcecodeonline.com/details/alert_once_message_script.html
http://www.randompages.info/2010/09/how-to-display-alert-message-when.html
http://www.codeave.com/javascript/code.asp?u_log=7035

_______________________________________________________________________________________


OPTION_6 _Various:


Opens up an alert window

<script>

window.alert('
Please read this important message');</script>


====================================================================


Message bar

<script>window.status='
This is my message';</script>

====================================================================

<font color="#FFFF00" size="6" face="Arial Black"><em><marquee

height="45" width="81%">
The Official Anne Shelton Website</marquee></em></font>

====================================================================


From beeb index window

<SCRIPT>window.alert('
Put your message here');</SCRIPT>

====================================================================





Courtesy of :
Por cortesía de :

http://www.ted-aylward.com/tech/java.htm
_______________________________________________________________________________________


<a href="#" onmouseover="alert('
Alert boxes are ugly.\nHowever they are very useful sometimes.')">Move your mouse over here</a>





Courtesy of :
Por cortesía de :

http://www.fabulant.com/downloadcenter/basicscripts/basicalert.html

_______________________________________________________________________________________

<form><input type=button onClick="
alert('Alert boxes are ugly.\nHowever they are very useful sometimes.')" value="open alert box" style="font-size:8pt"></form>





Courtesy of :
Por cortesía de :

http://www.fabulant.com/downloadcenter/basicscripts/basicalert.html


_______________________________________________________________________________________



More_Info :
http://www.fobbleup.com/2012/09/alert-message-and-dialog-box.html
http://www.triconsole.com/html/marquee.php
http://mistonline.in/wp/give-a-welcome-alert-message-to-your-visitors-using-javascript/
http://gaf210.imvustylez.net/codes/various/#





Put_image_edit_from_Art_web :
http://krebsonsecurity.com/2013/01/what-you-need-to-know-about-the-java-exploit/





_______________________________________________________________________________________


Related items or information of scripts and codes websites..

Relacionados artículos u información de scripts y códigos en páginas webs.

 

Example_cross_site_scripting_attack_and-defense :
https://forum.intern0t.org/web-hacking-war-games/112-cross-site-scripting-attack-defense-guide.html


Simil_Problems_Help_and_Solutions:
http://forum.joomla.org/viewtopic.php?p=1602758

Help for your browser and your privacy.
Vulnerabilities, etc.

Ayuda para tu navegador y su privacidad.
Vulnerabilidades, etc.

___________________________________________________________________________________________________________________

Friend.That's all very well, but still I have no site or blog.

Also need a template of Webmaster or similar nice template, and if it can be free.

Amigo.Todo eso está muy bien, pero aún no tengo ningún sitio, ni blog.

Además necesito una plantilla de Webmaster o similar, agradable, y si puede ser gratis.

Also I have no Anti-virus, I do not know here, really.

Además no tengo Anti-virus, no sé que hago aquí, la verdad.

And when you have all that, I would like to see a film in my native language.
If you can be online and free, too.

Y cuando tenga todo eso, me gustaria ver alguna película en mí idioma nativo.
Si puede ser, online y gratis, también.

I also want somewhere free to upload my work, multimedia, documents, etc.. whether it can be about 50 Gbs.
and last links to my site created.

Además quiero algún sitio gratis para subir mís trabajos, multimedia, documentos, etc. si puede ser de unos 50 Gbs.
y que duren los enlaces, para mí sito creado.

Could you give me a program to upload to other hosting servers, but do not last long in time, is for friends who have other bills, you know?

Podría usted, facilitarme algún ¨ programita ¨ para subir a otros servidores de alojamiento, aunque no duren mucho en el tiempo, es para unos amigos que tienen otras cuentas, sabe?

Is demanding that the friend,
My! xD

Que exigente es el amigo,
por Dios! xD

Truly a message alert!

lol

Verdaderamente es un mensaje de Alerta!

lol

I do not understand very well, that means LOL.

No entiendo muy bien, que significa eso de LOL.

Well, sorry, really, would not be annoying.

Understand that for me, this is all new, I'm learning.

But since we're here, could you tell me somewhere to
To make money with my blog or website.
Legally, of course.

Bueno, lo siento, de verdad, no queria ser molesto.

Comprenda que para mí, todo ésto es nuevo, estoy aprendiendo.

Pero ya que estamos aquí, podría decirme algún sitio para
poder ganar dinero con mí blog o sitio web.
De forma legal, naturalmente.

 

 

 

 

- Do not worry, you are all Webmasters to me, is a matter of time.
Remember to in the future, you receive free, you return it free..

Do not be afraid to fail,
that failure will issue to you ..

- No se preocupe, para mí todos sois Webmasters, es cuestión de tiempo.
Acuerdese en el futuro, que lo que reciba gratis, devuelvalo usted gratis o libre.
.

No tema al fracaso,
que el fracaso le tema a usted..

That's fine, but, for/by  Adults or similar
  Is there any way to make money other than by clicks?

Está muy bien, pero, para/por Adultos o similar
 ¿hay alguna forma de ganar dinero que no sea por clicks?

Sure you find the solution.
Luck.

Seguro que encuentra la solución.
Suerte.

.. ..Ok, ok, I, sorry..

.. ..Not to be annoying again, but could recommend me some information to create my own forum.

I've always dreamed of having a large site, opinions, maybe sports, etc. .. and be the one who controls all those people ..
for if wicked people, and stuff ...

Share good things on my forum, really .. and others to serve the help, that would be nice ..


- Well, I think I have it just for you ..
But, you must keep in mind that you may choose from several options offered on the Net

I added information, just serves.


No problem, maybe something free to start, and some information for the future comfort of the Forum, but consistent cn Plans.Comprensive to  me.


- Sure, I'll take it, I understand perfectly.​



- The warning message was figuratively, with sense of humor, and stuff .. xD​

The friend says by far (far away ..) ..:
Ajam, ya, ya, yeah, yeah.. ..





.. ..Vale, ok, lo siento..

..No quiero ser molesto otra vez, pero podría recomendarme algo de información para crear mí propio Foro.

Siempre he soñado con tener un sitio grande, de opiniones, tal vez de deportes, etc.. y ser yo quien controle a toda esa gente..
por si hay gente traviesa, y esas cosas...

Compartir cosas buenas en mí Foro, en definitiva..y que a otras personas puedan servirle la ayuda, eso estaría bien..


- Bien, creo que tengo lo justo para usted..
Pero, debe tener en cuenta que puede que elegir entre varias opciones que le ofrecen en la Red.

He añadido información, igual le sirve.


No hay problema, tal vez algo gratuito para empezar, y algo de información para el futuro confort del Foro, pero concordante con mí presupuesto.Comprendalo.

- Sí, claro, me hago cargo, le entiendo perfectamente.



- Lo de mensaje de alerta, era en sentido figurado, con sentido del humor, y esas cosas..xD


El amigo comenta de lejos, ( a lo lejos..)..:
ajam, ya, ya, si, si.. ..

 

 

 


- I do not know if I understand you correctly, sorry, sorry, but I've seen (browsed some place),

 What is that Webmaster, Net_Protector, and others ..?




- No sé si le entiendo bien, perdone, disculpas, pero he visto (ojeado algo de su sitio),

¿Que es eso de Webmaster, Net_Protector, y demás..?






They are small or memoranda of possible profiles in the network in an informative or reference, but does not have to be this way, you can have more friends profiles.

Son pequeños apuntes o notas de posibles perfiles en la Red de forma informativa o de referencia, pero no necesariamente tiene que ser de ésta manera, puede haber más perfiles de amigos.









- Another thing to ask ..

..Internet Is it dangerous?




- Otra cosa para preguntar..

..¿Es peligroso Internet?






Well, it all depends on how you perceive things, their references, if you bring friends for protection when browsing, and follow some recommendations Webmasters course.


Bueno, todo depende de como se perciban las cosas, sus referencias, si lleva amigos para la protección al navegar, y sigue algunas recomendaciones de Webmasters, por supuesto.









- Is that many things, and I do not know if I know how to learn them all, gives me a bit of trouble to talk to you, because it seems a person who understands a lot of information and technology, do not want to laugh at me, and stuff. .



- Es que son muchas cosas, y no sé si sabré aprenderlas todas, me dá un poco de apuro hablar con usted, por que parece una persona que entiende mucho de informática y las tecnologías, no quiero que se ria de mí, y esas cosas..











You must understand that there is no bad student, but bad teacher.

You should not fear asking when, in general, for Webmasters, Developers, Teachers, etc, like being asked if you are unsure about something, questions, etc..

No to go with danger never for ask when a polite, albeit a rock star, a celebrity, etc..

Well if it bothers the person with your questions, possibly not worth wasting time keeping it as a reference in life.



Debe entender que no existe mal alumno, sino mal profesor.

Usted no debe temer a la hora de preguntar, en general, a los Webmasters, Desarrolladores, Profesores, etc, les gustan que le pregunten si tiene dudas sobre algo, cuestiones, etc.

No se acompleje nunca a la hora de preguntar de forma educada, aunque sea una estrella del Rock, una persona famosa, etc.

Pues si se molesta la persona con sus preguntas, posiblemente no merezca la pena perder el tiempo teniendola como referencia en la vida.



Do not be afraid to ask the time, never
For if questions seem silly,
but without question, it will.


No tenga reparos a la hora de preguntar, nunca
Pues si pregunta parecerá tonto,
pero si no pregunta, lo será.










- Know what, you really like me, I sympathize, but there is so much danger on the Net, I do not know whether to trust someone,
Do you know what I mean, right?


- Sabe una cosa, usted me cae muy bien, me simpatiza, pero es que hay tantos peligros en la Red, que no sé si confiar en alguién,
¿Sabe a lo que me refiero, verdad?








Yes, I know what it refers to, I see what you mean.
Something safe and free at the same time, as
[Free_World], but being yourself, authentic ..

Sí, sé a lo que se refiere, entiendo lo que me quiere decir.
Algo seguro y libre a la vez, como
[Free_World], pero siendo usted mismo, autentico..








- I would install another operating system, finally, what do you recommend, friend?

- Me gustaría instalar otro sistema operativo, por último, ¿Cúal me recomienda, amigo?






We can not recommend anything specific, it depends on the needs of each person and his understanding of the technologies, you understand ..

No podemos recomendarle algo en concreto, pues depende de las necesidades de cada persona y su forma de entender las tecnologías, comprendalo..






- hahaha, now I understand what warning message, good sense of humor ..

..Well, thank you very much for all the help ..





- jajaja, ahora comprendo lo de mensaje de alerta, tiene sentido del humor bueno..

..Bueno, muchas gracias por toda la ayuda..





Yeah, well, everything has its time and its format, although it seems that has served the information ..

Si, bueno, todo tiene su tiempo y su formato, aunque parece que le ha servido la información..





- I can come back another day??

- ¿Puedo volver otro dia?





We do not close ever .. we're not exploited in the sense of working hours, or work at a taxi company, there is a store like Open24 hrs. for everybody, but free.
Unless prohibition is declared, or the like ..xD
Nosotros no cerramos nunca..no es que estemos explotados en el sentido de horario laboral, o trabajemos en una compañia de taxis, no, es parecido a una tienda Open24 hrs. para todo el mundo, pero gratuita.
A no ser que se declare la ley seca, o similar..xD

 


 

​​

​​


 

You_cache_is_Webmaster!
People_Defender´s_Info_from_alls_are_1
bottom of page