Posts

Showing posts with the label HTML

How to Split @ in MVC JQuery

      In this MVC @ is The Special Character.  So normal split function is (string.split('@')) in this Case Did Not Use @ in MVC. Getting Error on this Page.   In MVC You Can Use @@ . I Mentioned One Example Below . I Will Split Only Domain Name in MVC and C#. If You Are Using Single @ You Will Get The Server Side Error. var EmailDomain = txtemail.split("@@")[1];

Simple Countdown Process in JQuery

Image
    In this section Mentioned Automatic Time Countdown in JQuery. < html > < head >     < script src ="jquery-2.1.1.min.js"></ script >     < script src ="jquery-ui.js"></ script >     < link rel ="stylesheet" href ="jquery-ui.css">     < link href ="Timer/timeTo.css" rel ="stylesheet" />     < script src ="Timer/jquery.time-to.js"></ script >     < script type ="text/javascript">         $(document).ready( function () {             $( '#TimerReslTime' ).timeTo({                 displayDays: 2,                 seconds: 123,  //in Sec  ...

Display Doughnut Chart Using DevExpress and WebAPI

Image
In this Charts Using Web API To Know How to Value Get Value from Api  . Charts: Code <! DOCTYPE html > < html > < head >     < meta name ="viewport" content ="width=device-width" />     < title > DoughnutChartDisplay </ title >     < script src ="jquery-2.2.3.min.js"></ script >     < script src ="dx.viz-web.js"></ script >     < script type ="text/javascript">         $( function () {             $.getJSON( 'http://localhost:50879/api/name/getname' , function (data) {                 $( "#container" ).dxPieChart({                   ...

Display Pie Chart Using DevExpress and WebAPI

Image
In this Charts Using Web API To Know  How to Value Get Value from Api  . Charts:  Code <! DOCTYPE html > < html > < head >     < meta name ="viewport" content ="width=device-width" />     < title > PieChartDisplay </ title >     < script src ="jquery-2.2.3.min.js"></ script >     < script src ="dx.viz-web.js"></ script >     < script type ="text/javascript">         $( function () {             $.getJSON( 'http://localhost:50879/api/name/getname' , function (data) {                 $( "#container" ).dxPieChart({                  ...

Disable F12 Developer Tools Interface or F12 Key in JQuery

              Using F12 control Client User Can see the all Client side Like Html,Css,Jquery ,Javascript Files. these case not secured for our Web page.So We can use the Below code to Disable Developer Tools Using JQuery. Code: < html xmlns ="http://www.w3.org/1999/xhtml"> < head >     < title > Disable F12 Developer Tools Interface or F12 Key </ title >     < script src ="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></ script >     < script >         $(document).keydown( function (event) {             if (event.keyCode == 123) {                 return false ;             }    ...