15,127 Topics

Member Avatar for
Member Avatar for alex910TN

Hi guys, I am trying to implement my first carousel on my website. I have 5 images with the same dimensions with the following HTML markup: <div id="myCarousel" class="carousel slide"> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> <li data-target="#myCarousel" data-slide-to="3"></li> <li data-target="#myCarousel" data-slide-to="4"></li> <li data-target="#myCarousel" …

Member Avatar for Abdullah_19
0
46K
Member Avatar for davy_yg

Hello, I have a question: is it possible to modify this jquery script? https://www.jqueryscript.net/demo/Tiny-jQuery-Plugin-To-Create-Water-Ripple-Effect-Ripple/ I need the water effect only appears on certain place on the website and the ripple effect must appears repeatedly on one particular place. Here is the code for ripple effect: I wonder what to add …

0
404
Member Avatar for Jon_14

Hi, I have a shortcode in WordPress that returns a number for a user. I'd like to be able to sum multiple returns of this number for different users. So it would basically do; [shortcode answer 1]+[shortcode answer 2]+[shortcode answer 3]......... Can any one let me know if this is …

0
139
Member Avatar for Ritesh_8

Hi I am working on a payroll project and I am coding with php,html,js and mysql on xampp server. I have a salary sheet code which needs to be printed in pdf format for each employee with their names as the pdf filename. on running the php page the js …

Member Avatar for urtrivedi
0
7K
Member Avatar for chamki

Hello, Can someone help me in developing my coding skills. I wrote code factorial. I see different logic at different places but no where I found the one that I wrote. Please tell me if there is anything worng in the below javascript code.var btn = document.querySelector('button'); btn.onclick = function(){ …

Member Avatar for Reverend Jim
0
230
Member Avatar for niranga

Hi All, I have a PHP code which do some changes to the POST variables it receives and redirect the page to some other page. This PHP code was initially designed to work without Ajax. So there wasn't any problem with the redirect function and it perfectly handles the POSt …

Member Avatar for Mukul_2
0
13K
Member Avatar for jkon

Let me give you the context. We are a small company 5 persons , two owners and we do have a variety of interests. But to be honest the money flow comes from eshops , there we developed our own platform in PHP in a way that could be in …

Member Avatar for jkon
0
424
Member Avatar for patk570

Hey everyone, I have a JSON array that pulls data, its an immense amount of data that i use. It is a multilevel array eg: dateTime: 2018-12-04T10:30:45:222z comments:"" +Driver[0] [0] fname: John lname: Doe driverCode: DOEJ [1] fname: Mary lname: Smith driverCode: SMIMA more info etc I am trying to …

Member Avatar for ndeniche
0
3K
Member Avatar for patk570

I have a code that pulls a JSON response, and I need to compare times from now() and a previous when the timestamp was created. I am able to pull the info and have it display. However, when i try and get the comparison to work it just sits there …

Member Avatar for jkon
0
395
Member Avatar for Potato.Head

Hi to all, I have the following situation: I have an iframe and I want to display a loading animation to the user until the iframe is fully loaded, this is want I did: 1. I start the iframe with style:display:none 2. I have a div that wraps the iframe …

Member Avatar for SrinivasaRao_2
0
2K
Member Avatar for davy_yg

What are cool stuff that you can create with NodeJs? And is there tutorial for that? I heard that NodeJs can create something like JivoChat , is that true?

Member Avatar for pty
0
169
Member Avatar for davy_yg

Hello, Cek this effect. I am trying to modify the effect so that when I click a button the water effect appears on certain location. How to do that? http://www.advance-web-studio.com/effect/water-ripple-master2/demo/ index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Ripple</title> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> …

0
210
Member Avatar for patk570

Question, I have a `$each(array, function());` and within that statement, i have a` for` loop , Is it safe to be doing this? and could this be the reason that i am getting the same values multiple times returned even though the object array length is 8, i am getting …

Member Avatar for Kannu_2
1
453
Member Avatar for Ninja_1

I need assistance in storing checkbox API values. I have multiple checkboxes and I can display API values in html when checkbox is checked. But how do I store the initial value of a checked checkbox and show it in a span? I currently get “on” value instead of API initial value …

Member Avatar for Kannu_2
0
287
Member Avatar for NA

i want to show my graph values but its show null output. i show you in image output also // JavaScript Document $(document).ready(function(){ $.ajax({ url: "data.php", method: "GET", success: function(data) { console.log(data); var playerid = []; var score = []; for(var i in data) { playerid.push("Player " + data[i].playerid); score.push(data[i].score); …

Member Avatar for stultuske
0
355
Member Avatar for Mr.M

This may sound confusing but I have a textbox which is a cell number textbox and I want when the max length of 10 has been reached then fire the php code which is inside the same html page as form and this php code will then get the value …

Member Avatar for Mr.M
0
6K
Member Avatar for Mark_79

Hello I am needing some assistance with setting up a function to check if a user is logged in or not with Passport.js using the local and slack strategy. I have a localstrategy which works fine but I also want to implement a sign in with slack as well. I …

0
220
Member Avatar for marshall_1

**-EIQ Studio's-** is looking for new/semi-new web developers looking to further their skills and experience in Web Development by assisting the Community with our Website. Once completed, A percentage of all profits that come through the website will be awarded to the developers.

Member Avatar for jwenting
0
236
Member Avatar for ConstantineOfTX

[B]The following problem comes from an old JavaScript Textbook, JavaScript – First Edition, by Patrick Carey and Frank Canovatchel. This problem is not used in the Second Edition, making the question I shall ask a fair question. The problem is Case Problem 2, Chapter 9, pages 519-20. Here are the …

Member Avatar for Richard_42
0
385
Member Avatar for Mr.M

Hi everyone. I'm having a very seriouse problem where I have a textbox and I want a button and I want to take whatever a user type in this textbox/textarea and set it to the `data-name` which is a button's parameter. Here is the codes. Textarea: `<input type="text" id="dCell" value="Cellphone …

Member Avatar for gentlemedia
0
446
Member Avatar for patk570

Hey everyone, I have a table, that is going to used to calculate IFTA, its a fueltax calculator populated by each state and the rate of each state. My question is, do i need to create a formula for each state? or can i do 1 formula and have it …

Member Avatar for patk570
0
512
Member Avatar for whitejag

I bought a web site a few months ago thinking that I could go to a community tech school. I have not found the classes that I need. So I don't know how to build it. Help?

Member Avatar for rproffitt
0
200
Member Avatar for toplisek

How to modify this script to work with all options using Google Callback function? <!DOCTYPE HTML> <html> <head> <title>gCaptcha</title> </head> <body> <form id="mycontactform1" method="post"> <script type="text/javascript"> var RecaptchaOptions = {"curl_timeout":1,"lang":"en"}; function captchaSubmit(data) { document.getElementById("mycontactform1").submit(); } function IsRecapchaValid() { var res = grecaptcha.getResponse(form); if (res == "" || res == undefined …

0
104
Member Avatar for premnath_1

Dear team, We are going to develop the WEB Application which contains more than 200 forms with different fields. Kindly, let us know which technology is best for front end (Angular 2 , React or any other technology)

Member Avatar for rproffitt
0
292
Member Avatar for joshua john

Can u tell me how toset a reminder in a calendar and it should show out as a popup notification two hours before the event to occur.

Member Avatar for rproffitt
0
137
Member Avatar for sushmitha_2

hi, Am a newbie in php,i want to set a countdown timer for online quiz in php. when an student login,there wil be a home page and in home page there are two php pages like quiz.php and result.php, So When the studuent selects quiz.php,he will be redirected to quiz.php …

Member Avatar for sushmitha_2
0
18K
Member Avatar for Henry_17

I am interested in accessing public meta data within an audience on Dazah platform without an authenticated user. Does the API have an oauth/token endpoint? Thanks, Henry Villadiego Web Video Specialist

0
274
Member Avatar for patk570

6 ●4 I have a code that displays an array from GeoTab SDK, I am able to get the array to display in the console.log, and it populates the results like normal, However, When I try to populate the data in the table, nothing shows but the headings. Here is …

0
216
Member Avatar for alexandru1111ful

I have a form and I need to connect the form with another page wich contains a table, afer pressing the submit button (form page), should redirect me the other page with the table,and there I shoul have a new row with the data I've completed. The pages are in …

Member Avatar for rproffitt
0
290
Member Avatar for davy_yg

Cek this website: http://fresway.com/ On the left corner you see there is a big circle when you press it hides all other round buttons around it. Now, I would like it to hide the profile_picture as well and the light jpg under it. How to make such a thing? Here …

Member Avatar for gentlemedia
0
351

The End.