Click here to Skip to main content
15,887,083 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Loading aspx page in jquery modal popup Pin
Blikkies20-Jul-15 1:33
professionalBlikkies20-Jul-15 1:33 
AnswerRe: Loading aspx page in jquery modal popup Pin
Erick Shawn31-Jul-15 2:01
professionalErick Shawn31-Jul-15 2:01 
QuestionSSO using WSTrustChannelFactory Pin
TimWallace18-Jul-15 7:35
TimWallace18-Jul-15 7:35 
SuggestionRe: SSO using WSTrustChannelFactory Pin
Richard Deeming20-Jul-15 7:28
mveRichard Deeming20-Jul-15 7:28 
QuestionIs it possible to add Custom Suggestions to google.maps.places.Autocomplete Pin
sr15916-Jul-15 2:16
sr15916-Jul-15 2:16 
AnswerRe: Is it possible to add Custom Suggestions to google.maps.places.Autocomplete Pin
Richard MacCutchan16-Jul-15 3:05
mveRichard MacCutchan16-Jul-15 3:05 
QuestionDialog is not a function Pin
Syed Rehman15-Jul-15 8:27
Syed Rehman15-Jul-15 8:27 
AnswerRe: Dialog is not a function Pin
Anil Vaghasiya15-Jul-15 19:47
professionalAnil Vaghasiya15-Jul-15 19:47 
Hello,

First of all add required JS and CSS of JQuery after that do the Following code.

HTML
<html>
<head>
 <script src="js/jquery-1.10.2.js"></script>
    <script src="js/jquery-ui-1.10.4.custom.min.js"></script>
    <link href="css/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" />
<script>
  function OpenDialog() {
            $("#dialog-open").dialog({
                modal: true,
                buttons: {
                    Ok: function () {
                        $(this).dialog("close");
                    }
                }
            });
        }
</script>
</head>
<body>
 <div id="dialog-open" title="MyDialog" style="display:none;">
        <p>
            
          Hello Mr....I am working on displaying dialog using jquery on button click in asp.net. 
        </p>
        <p>
            Currently using 36% of your storage space.
        </p>
    </div>

    <input type="button" id="btnDialog" onclick="OpenDialog();"/>
</body>
</html>

GeneralRe: Dialog is not a function Pin
Syed Rehman19-Jul-15 4:52
Syed Rehman19-Jul-15 4:52 
GeneralRe: Dialog is not a function Pin
Syed Rehman19-Jul-15 4:58
Syed Rehman19-Jul-15 4:58 
GeneralRe: Dialog is not a function Pin
Anil Vaghasiya19-Jul-15 19:32
professionalAnil Vaghasiya19-Jul-15 19:32 
GeneralRe: Dialog is not a function Pin
Anil Vaghasiya19-Jul-15 18:56
professionalAnil Vaghasiya19-Jul-15 18:56 
Questionbootstrap table with many functions all together Pin
Member 1183833815-Jul-15 1:46
Member 1183833815-Jul-15 1:46 
AnswerRe: bootstrap table with many functions all together Pin
Erick Shawn31-Jul-15 2:09
professionalErick Shawn31-Jul-15 2:09 
QuestionPutting up a Web Site Pin
BobInNJ10-Jul-15 10:40
BobInNJ10-Jul-15 10:40 
AnswerRe: Putting up a Web Site Pin
Afzaal Ahmad Zeeshan10-Jul-15 11:26
professionalAfzaal Ahmad Zeeshan10-Jul-15 11:26 
GeneralRe: Putting up a Web Site Pin
F-ES Sitecore11-Jul-15 4:44
professionalF-ES Sitecore11-Jul-15 4:44 
QuestionHow to get Memory usage size of each services running on Application Server using C#.net Pin
ven7538-Jul-15 20:57
ven7538-Jul-15 20:57 
GeneralRe: How to get Memory usage size of each services running on Application Server using C#.net Pin
Richard MacCutchan8-Jul-15 21:32
mveRichard MacCutchan8-Jul-15 21:32 
Questionfunction call in mvc Pin
Gabriel Leon Leyva6-Jul-15 10:44
Gabriel Leon Leyva6-Jul-15 10:44 
AnswerRe: function call in mvc Pin
F-ES Sitecore8-Jul-15 22:12
professionalF-ES Sitecore8-Jul-15 22:12 
QuestionHaving trouble getting buttons to display inside another div Pin
Dark Envious4-Jul-15 1:56
Dark Envious4-Jul-15 1:56 
SuggestionRe: Having trouble getting buttons to display inside another div Pin
Richard Deeming6-Jul-15 3:55
mveRichard Deeming6-Jul-15 3:55 
Questionwebfont not working on iOS Pin
Jassim Rahma3-Jul-15 11:38
Jassim Rahma3-Jul-15 11:38 
AnswerRe: webfont not working on iOS Pin
Erick Shawn1-Aug-15 0:51
professionalErick Shawn1-Aug-15 0:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.