Click here to Skip to main content
15,915,164 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: event for partial view unload Pin
Nathan Minier11-Aug-16 1:29
professionalNathan Minier11-Aug-16 1:29 
QuestionWhy cant I add any CSS properties to my webpage? Pin
ScarletMcLearn6-Aug-16 2:56
ScarletMcLearn6-Aug-16 2:56 
AnswerRe: Why cant I add any CSS properties to my webpage? Pin
Richard Deeming8-Aug-16 1:47
mveRichard Deeming8-Aug-16 1:47 
AnswerRe: Why cant I add any CSS properties to my webpage? Pin
W Balboos, GHB9-Aug-16 5:15
W Balboos, GHB9-Aug-16 5:15 
QuestionConfused between Django/Python or NodeJS/ExpressJS Pin
Member 118283653-Aug-16 8:57
Member 118283653-Aug-16 8:57 
AnswerRe: Confused between Django/Python or NodeJS/ExpressJS Pin
Nathan Minier5-Aug-16 1:27
professionalNathan Minier5-Aug-16 1:27 
GeneralRe: Confused between Django/Python or NodeJS/ExpressJS Pin
Root1316-Nov-16 0:06
Root1316-Nov-16 0:06 
GeneralRe: Confused between Django/Python or NodeJS/ExpressJS Pin
Nathan Minier16-Nov-16 0:59
professionalNathan Minier16-Nov-16 0:59 
Question[ChildActionOnly] attribute in MVC Pin
Mgkvp2-Aug-16 23:25
Mgkvp2-Aug-16 23:25 
AnswerRe: [ChildActionOnly] attribute in MVC Pin
Nathan Minier3-Aug-16 1:19
professionalNathan Minier3-Aug-16 1:19 
AnswerRe: [ChildActionOnly] attribute in MVC Pin
Richard Deeming3-Aug-16 2:24
mveRichard Deeming3-Aug-16 2:24 
QuestionWhat is causing some sites to generate huge history lists? Pin
charlieg1-Aug-16 1:10
charlieg1-Aug-16 1:10 
AnswerRe: What is causing some sites to generate huge history lists? Pin
Richard Deeming1-Aug-16 2:13
mveRichard Deeming1-Aug-16 2:13 
GeneralRe: What is causing some sites to generate huge history lists? Pin
charlieg1-Aug-16 4:07
charlieg1-Aug-16 4:07 
GeneralRe: What is causing some sites to generate huge history lists? Pin
Richard Deeming1-Aug-16 4:09
mveRichard Deeming1-Aug-16 4:09 
QuestionWeb Development Architectures - Smaller projects/Security Pin
TheOnlyRealTodd24-Jul-16 18:53
professionalTheOnlyRealTodd24-Jul-16 18:53 
AnswerRe: Web Development Architectures - Smaller projects/Security Pin
Richard Deeming25-Jul-16 2:13
mveRichard Deeming25-Jul-16 2:13 
GeneralRe: Web Development Architectures - Smaller projects/Security Pin
DesignersX11-Aug-16 21:33
professionalDesignersX11-Aug-16 21:33 
QuestionCustom navbar using boostrap, but I wrote new CSS from scratch, width issue Pin
jkirkerx22-Jul-16 10:28
professionaljkirkerx22-Jul-16 10:28 
AnswerI think I got it Pin
jkirkerx24-Jul-16 10:08
professionaljkirkerx24-Jul-16 10:08 
Questionwebsite in other language Pin
Member 1264619220-Jul-16 22:11
Member 1264619220-Jul-16 22:11 
AnswerRe: website in other language Pin
Afzaal Ahmad Zeeshan22-Jul-16 8:17
professionalAfzaal Ahmad Zeeshan22-Jul-16 8:17 
QuestionDelete button no responding and not remove record Pin
ahmed_sa20-Jul-16 8:27
ahmed_sa20-Jul-16 8:27 
I try more time to delete record by jquery but no responding meaning nothing happen
my code as following

<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<script src="~/Scripts/jquery-1.10.2.js"></script>
<script>

$(function () {
$("#btn").click(function ()
{
var x = $("#txt1").val();
var y = $("#txt2").val();
var z = $("#txt3").val();
$("#tb").append(" " + x + " " + y + " " + z + " <input type='button'value='Delete'/> <input type='button'value='Edit'/>");


});
$("#tb").on("click", ".c", function () {
$(this).parent().parent().remove();
});

});
</script>
</head>
<body>

ID<input type="text" id="txt1" />

Name<input type="text" id="txt2" />

Country<input type="text" id="txt3" />

<input type="button" value="add" id="btn" />


IDNameCountry<input type="button" class="c" value="Delete" />Edit


</body>

what remaining in my code or wrong to button delete work
AnswerRe: Delete button no responding and not remove record Pin
Ujjwal Gupta22-Jul-16 6:28
Ujjwal Gupta22-Jul-16 6:28 
QuestionIssue with jquery slider Pin
Raghavendra.Kodimala19-Jul-16 20:21
professionalRaghavendra.Kodimala19-Jul-16 20:21 

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.