JavaScript - jQuery - Ajax
-
» JanMolendijk Dear admin, I`m searching for round 10 hours for a solution to track & store spending-time from a visitor on the website.
I found a Ajax...
Last post » Admin Maybe it is not working with onunload to execute ajax request when the user closes the page.
Try the following code.
- JavaScript:...
-
» JanMolendijk Dear admin I try to add two buttons in one off your scripts for opening via button
but i cant find out what i`m doing wrong one is opening but...
Last post » Admin Hello,
There is no attribute id_1 . You can change the value of an atribute, but not its name.
You can use the same js script for multiple buttons;...
-
» Alecos I see an error in firefox when visit my page that contains your script. We are talking about the ajax script that allows the rating... try to install...
Last post » Alecos Thanks. I appreciate your efforts... Now all fine...
-
» Marius Hello,
I have this html code:
<label><input type='checkbox' id='chb1' value='1' />Add text</label><br>
<textarea...
Last post » Admin Hello,
1. With javascript, register a 'click' event to the checkbox element.
2. In the function called by that click event check if the checkbox is...
-
» JanMolendijk Dear Admin I would love to use this script, but their is a problem with the first record in my sql-table (DESC)
The first record (DESC) is not...
Last post » Admin The php, javascript and html codes are wrong mixed.
It is good to avoid mixing javascript code in php strings.
- Try this:
<?php
//your...
-
» JanMolendijk Dear Admin i Hope you understand my Question
I would like to use your SimpleModal Windows script
But into my notice-script the code where i wanna...
Last post » JanMolendijk Dear Admin i just found they answer
I have to put '. $row .' to the basic-modal, button & win_cnt...
All things are working corectly now....
-
» Marius Hello,
How can I create a JavaScript DOM object out of string with HTML content?
For example, i have this string which i get with ajax from...
Last post » Admin Hello,
You can use DOMParser() to create a #document from a string:
var str ='abc 123<div id= test >coursesweb.net</div><span class=...
-
» Marius Hello
I have a JavaScript code that automatically adds some value in an input field.
How can I detect when the value was added in input?
If I use...
Last post » Admin Hello,
For input fields it is better to use the 'input' event.
To emit and detect an event when some data is added automatically in input field,...
-
» Marius Hello
Anyone know how to directly display in HTML an image with dynamic SRC, from external URL address, using JavaScript?
To have in html something...
Last post » Admin Hello
Try this code:
<div id= dimg >Here add image</div>
<script>
var dimg = document.getElementById('dimg');
//receives the JPG...
-
» Marius I have a jquery ajax function that is called every second, with setTimeout().
I want an alert to pop up whenever a new message is received.
Here's...
Last post » Admin Try something like this, store the previous response into a variable, and alert the message if response changed:
var msg_res =''; //store the...
-
» mlucicom Hello! I have a form that insert results to database.
Many users press this button several times until the confirmation message appears.
How can i...
Last post » Admin You can use onclick with: this.style.display='none' , or: this.style.visibility='hidden' ; will automatically hide the button, so, it will not be...
-
» mlucicom Hello! I have this jquery script that get all checkboxes from a div and check all at button click:
<script>
$( #check'.$id22.'...
Last post » Admin Hy,
To much code and i cannot test it because i not have the necessary database.
Study better the example I have gave above, that it works.
- If...
-
» mlucicom Hello! On page:
mluci.com/d/admin-index.php
- i tried to add database details from sql select into a div with javascript.
I have this php with...
Last post » Admin Hello,
I think I told you in other topic, The resulted sting in javascript must be on a single line, or each new line escaped with \ .
Example:...
-
» MarPlo Hello,
How can I check if a Div is in viewport and detect when it exits viewport.
Has anyone a code example or JS script that works in all...
Last post » Admin Try the JavaScript script and example from this page:
- It can be used to check if a html element is in viewport, and to get its size and...
-
» MarPlo Hello,
How can I get the position top, left of a html element in page, for example a Div or an image?
Also, how to get the size of a specified Div:...
Last post » Admin This function, getBoxPS(), can be used to get the position and size (in pixels) of html elements in page.
It returns an object with four properties:...
-
» JanMolendijk I have this textarea
<textarea name= details rows= 5 cols= 50 class= form-control ></textarea>
Now i have a page with all smilies &...
Last post » JanMolendijk Admin you thought off everything great work
i added it & is working thanks
-
» mlucicom hello! I have this page: elitservice.dk/contact-01.php
When i press submit button i get an alert() with parsererror .
i test php code and work...
Last post » Admin Maybe from functions.js , or ask the one who made the js scrips used in that page.
-
» Marius How can I redirect the user from one page to another using jQuery?
I saw both window.location = url; and window.location.href = url; How are they...
Last post » Root13 I think, it's better to use replace()
-
» mluci12 How can i get image who is choose on: autobelgia.ro/home.html
At SELECT VEHICLE TYPE section?
Last post » Admin I not know. You can post what code you have tried and what is not working in that code.
-
» mluci12 Hello,
How can i get the value of this select live (mluci.com/d) a prefix number, and add in next input?
Last post » Admin Hi
See if this example helps you. The <select> element must have an id .
<select name= countryCode id= countryCode >
<option...
-
» dmgatwork I am looking for a JavaScript that will capture the browser name and version that is understandable. I want to determine if my viewers have older IE...
Last post » Admin From what I know, you cannot get the user's ip with javascript unless you use ajax with a server side script or some kind of external service.
-
» mluci12 Hello!I want to make an webview in Javascript.I know that this is posibile but i dont know how can i do this.Please help me!
Last post » Admin Hi,
I not have experience with webview. From what I found on internet, it is an Android's class that allows you to display web pages as a part of...
-
» WestJA Hi All, I'm new to the forum.
my question is:
can all html be done in javascript?
the question has to do with parenting/siblings.
Last post » Admin Hi WestJA,
Welcome to this forum.
You can set and add in the page the html code with javascript, you can build all the html code with javascript;...
-
» Marius Hello
I use the following jQuery code to include a css file in html page, but it doesn't work.
var fcss ='address/file.css';...
Last post » Admin Hello
To include a css file in html document, use the <link> tag (not <style>).
You can use this javascript code:
var fcss...
-
» Marius Hello
I want to make a calendar, but I don't know how to calculate the number of days in month, in any year.
How can I get the number of days in...
Last post » Admin Hello
You can use the daysInMonth() function from this example (month is 1 based):
//Returns the number of days in a given month (1 - 12) and year...
Forum permissions
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum