Hello, my goal is to simulate keyboard presses in JavaScript and to send them at regular intervals in the text input of an instant messaging application.
However, not being a professional of JavaScript, I face several problems in my program below :
1) Being sure that the keystroke...
Announcement
Collapse
No announcement yet.
Search Result
Collapse
500 results in 0.1316 seconds.
Keywords
Members
Tags
-
Keypress function
-
Logo and menu disappear/appear on scroll, but on x-axis
So I have logo on left and nav on right.
My wish is that, on scroll, I want logo and nav to disappear and appear from seperate direction. Logo disappear/appear from the left side, and the menu to disappear/appear from the right, instead on disappearing/appearing from the top that almost all tutorials...
-
Please help modify script to comply for embedding in webpage
I need to embed a booking service into my webpage. I got the javascript to do it but when I insert it I just get a blank page. After running the code through a validator it turns out there are some errors or non compliance. Can you please hep me make it compliant and run
Code:<script type="text/javascript">
-
Concatinate
How do I get var a and var b together in a function?
e.g.
function mine()
{var a
var b
a = fielda.value;
b = fieldb.value;
fieldc.value = a ?and? b;
return true;}
-
Modification help please
Source Code:
https://github.com/Herudea/age-verification
I've modified it a little..
With the intention of.. if you answer 'No' to the question, are you over 18 years of age? It will allow you to click on the button that will redirect...
-
wordwrap difficulty
Hi,
I had a look at the Manual to get over the problem of breaking urls when using wordwrap()
My use case is to send out html emails
There is a suggestion by Dave Lozier, but it doesn't seem to cut the lines at all - so I think I have made an error somewhere....
-
Adding Search function to Isotope's "hideReveal" plugin
Hi all,
I've adapted some code from Desandro's "hideReveal" plugin for Isotope: https://codepen.io/desandro/pen/drpJK/
But I am trying to add a search functionality to it, and I am having some trouble. Could someone help me out?
Here's what I have!...
-
How to change the css animation delay in JavaScript
Hello, please take a look a this jsfiddle.
I need the underline to slowly start on page load. It's working fine.
But on mouse over I want it to restart without delay.
I think I made something wrong with this function.
Code:function updateDelay(event) {
-
Unclear about my mistake. Please advise. . .
In the given Javascript - shouldn't a yellow square appear in the foreground with a bigger red square in the background?
----
function doblue(){
var dd1= document.getElementById("d1");
dd1.style.backgroundColor="blue";
}...
-
Execute different stuff depending on function argument?
I was under the impression that I could execute different functions/methods depending on the argument passed to a function but in the following simplified example this doesn’t seem to work:
Code:<!DOCTYPE html> <html lang="en"> <head>
Last edited by VIPStephan; Sep 8, 2019, 05:49 PM.
-
How to check if radio boxes are checked - if function
Hello, I am learning Javascript. And this is part of my first project. A quoting form for a photosession.
Please bear with me, I am just learning and all the suggestions will be much appreciated.
Here is the fiddle.
How should the form work?
The submit button...
-
elite-fusion started a topic PHP to pull from SQL depending on selection of Dynamic inbox/select box - HELPin PHPPHP to pull from SQL depending on selection of Dynamic inbox/select box - HELP
Hello All,
Hope someone can assist me with the following:
It's a basic email form. The form itself works, but I want to accomplish TWO things here.
1. Upon clicking on SEND EMAIL button, for it to prompt the user to confirm if the details are correct, and for the...
-
Use function within heredoc
I try to do something like this:
PHP Code:$a='Hello'; $b='World';
function testFunction($a=false,$b=false){
?>
<div><?php echo $a.' '.$b;?></div>
<?php
}
$str=<<<EOT
testFunction($a,$b);
EOT;
-
Newbie requesting error proofing and efficiencys help
Hi, I need some help in making my code more efficient and adding error proofing, as sometimes it freezes and I cannot figure out what is happening.
I tried my best to create what I require but you will probably look at it in disgust, but we all have to start somewhere.
...