htmlAdmin2609

Asked a question
Add values of checkboxes to input text field on checked

How to Add values of checkboxes to the input text field? We stored the checkboxes value in a variable $checks, after that attach the handler to this collection. Inside the event handler, I take the collection...

December 6, 2021 2
Posted an answer
How to make textbox required if a certain value is selected in dropdown box

The HTML Code <div class="col-md-5"> Select Discipline <select id="groups" class="form-control" name="discipline" required=""> <option disabled="disabled" selected="selected" value="0">Select</option>...

October 2, 2021 5
Asked a question
How to make textbox required if a certain value is selected in dropdown box

How to make textbox required if a certain value is selected in drop-down box using Jquery?  

October 2, 2021 2
Posted an answer
How to display textbox on radio button selected

<!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.js"...

September 16, 2021 5
Posted an answer
Sending email in PHP using AJAX

Sending an email using a form (ajax, jquery Lib and PHP) Check out the demo link and source code.

March 26, 2021 5
Asked a question
Sending email in PHP using AJAX

I m trying to send email through contact page using PHP and Ajax. The HTML Code <div class="row"> <div class="col-md-6 form-group"> <input name="fullName" id="fullName" type="text" class="form-control"...

March 21, 2021 2
Asked a question
How To Create Cascading Dropdown List

How To Create Cascading Dropdown List? I have 2 different dropdown lists in an application form. The first dropdown is Research Area 1, the second one is Research Area 2. And both dropdowns contain the...

February 16, 2021 2
Posted an answer
How to configure proxy settings for Weblogic Server

Methods to set Proxy Settings on Weblogic Server We can enable proxy on the Oracle Weblogic server in two ways. 1. Proxy Setting on Weblogic server console We can simply enable the proxy by setting the...

February 11, 2021 5
Asked a question
How to configure proxy settings for Weblogic Server

How to configure proxy settings for Weblogic Server 12c? When the application is hosted behind a firewall and we required to send the request outside the firewall then we require a proxy to access the...

February 11, 2021 2
Posted an answer
How to show and hide textbox fields based on radio button selection

Show hide input fields when radio button is selected You can do it with a very simple step by using javascript. If the radio button is checked display a textbox using javascript. The Javascript code below....

February 7, 2021 5
Asked a question
How to show and hide textbox fields based on radio button selection

How to show and hide textbox fields based on radio button selection? I have three radio buttons, I want to display a text box field when the user selects the radio button as "Yes". However, I want to hide...

February 7, 2021 2
Asked a question
How to send email using python flask

How to send email using python flask? I am trying to send confirmation emails to the user using flask when the user submits a form on a contact page.      

February 6, 2021 2
Posted an answer
How to convert varchar2 to date in sql or mysql

You can simply use the date_format() to convert from varchar2 to date. Syntex SELECT DATE_FORMAT(STR_TO_DATE(fieldName, '%D-%M-%Y'), '%Y%m') as DateFormat from tableName; OR select date_format(str_to_date('01/01/2021',...

January 29, 2021 5
Posted an answer
Name and Uses of 10 Javascript Inbuilt Functions

About Javascript Inbuilt functions JavaScript offers you to access a number of built-in features, including the prompt() function, which helps you to ask the consumer for written input. As with the confirm()...

October 6, 2020 5
Asked a question
Name and Uses of 10 Javascript Inbuilt Functions
October 6, 2020 2
Asked a question
How to Upload images in Firebase server using php cURL

I am getting an error while uploading the images on the Firebase server using cURL PHP. Any please help. Now you can download the source code from the below link https://htmlcss3tutorials.com/how-to-upload-images-on-firebase-storage/...

October 3, 2020 2