htmlAdmin2609

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>...

View Question
0 Votes

<!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"...

View Question
0 Votes

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

View Question
0 Votes

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...

View Question
0 Votes

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....

View Question
0 Votes

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',...

View Question
0 Votes

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()...

View Question
0 Votes