UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

27 lines 1.31 kB
<!DOCTYPE html> <html lang="en"> <head> <title id="Description">jqxComplexInput Fluid Size Example. The width of the complex input in this demo is in Percentages.</title> <meta name="description" content="jqxComplexInput Fluid Size Example. The width of the complex input in this demo is in Percentages." /> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" /> <script type="text/javascript" src="../../../scripts/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcomplexinput.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#jqxComplexInput").jqxComplexInput({ width: "30%", height: 25, value: "1000 + 2i", spinButtons: true }); }); </script> </head> <body> <div id="jqxComplexInput"> <input type="text" /> <div> </div> </div> </body> </html>