Is there any way to add captions directly through the googlemaps API or do you need to put the external caption to the map, in the documentation I found no example of how to do it?
Caption I say is for example:
Yellow-Means a value of 10 R...
I have an input using an example CPF mask:
$("#cpfDependente").mask('000.000.000-00');
and I'm trying to set a value in the input this way
$("#cpfDependente").val(dependente.cpf);
It correctly directs the problem is that the masca...
I need to create a simple internal login system to apply to a blog. I can not make my code work at all, and I need help.
This is the Code:
<script language="JavaScript">
function Login(){
var done=0;
var usuario=document.lo...
How could I do to pass a value to a <input> field from another site?
In practice, I would like that when the user clicks on a link, button, and so on. (eg www.google.com) and in a given field a value that I have on my site appear...
I'm trying to pass a function written in javasript to php, but I think I made a mistake in the translation of some command and I can not find the error.
Function in JavaScript:
<script>
function dec(string)
{// retorna a mat...
I have an array in the Lua language, and wanted to pass its elements to an array JavaScript. Example of array Moon:
tabela_y = {0, 1, 2}
In PHP there is the implode, I do not know if it is possible in Lua.
Good morning,
I'm creating a form in html and javascript for validation, my idea is to create a successful alert or crash with html and css (cute and etc), but I do not know how I can "call" give a require on that alert that I created, help me?...
Hello.
I need the logo of the site to change according to the page that the user visits.
I have a site made in PHP in which the top is include . So I thought about changing the logo via Javascript.
I set ID="logo" to img a...
I use this code to connect to my server with WebSockets :
(function(nameSpace) {
function createMethod(method, options, stateCallback) {
var that = this;
this[method] = function() {
if (stateCallback && stateCallback.a...
I have the following code:
var teste = 'objeto': {
version: '5.x.x',
name:this[??] // 'objeto'
};
What could be done so that the name property has the same name as the object to which it belongs (which...