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

Web Development

 
AnswerRe: how do you guys practice your front end dev skills? Pin
F-ES Sitecore11-Nov-15 2:43
professionalF-ES Sitecore11-Nov-15 2:43 
AnswerRe: how do you guys practice your front end dev skills? Pin
W Balboos, GHB25-Nov-15 1:55
W Balboos, GHB25-Nov-15 1:55 
QuestionLooking for a solution for combine WebService and jQuery (web app) Pin
goldsoft30-Oct-15 23:29
goldsoft30-Oct-15 23:29 
AnswerRe: Looking for a solution for combine WebService and jQuery (web app) Pin
Richard Deeming2-Nov-15 1:59
mveRichard Deeming2-Nov-15 1:59 
Question[REST Service] Return full entity or just the needed values - Best practice? Pin
Udayakiran Kallavi29-Oct-15 7:08
Udayakiran Kallavi29-Oct-15 7:08 
AnswerRe: [REST Service] Return full entity or just the needed values - Best practice? Pin
Nathan Minier30-Oct-15 6:36
professionalNathan Minier30-Oct-15 6:36 
GeneralRe: [REST Service] Return full entity or just the needed values - Best practice? Pin
Udayakiran Kallavi1-Nov-15 5:08
Udayakiran Kallavi1-Nov-15 5:08 
QuestionWhy RAM increase? Pin
Member 1161266227-Oct-15 21:42
Member 1161266227-Oct-15 21:42 
I'm going to show 5 videos with click button in html.

<html>
<body>
<button id="click">Click</button>
<div id='plc'></div>
</body>
<link rel="stylesheet" src="jquery-ui.css">
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<script type="text/javascript">
var video;
var index = 0;
$("#click").on("click", function() {
	if (video != null)
		video.remove();
	video = document.createElement('video');
	document.getElementById('plc').appendChild(video);
	
	var realPath = 'file:///G:/temp/';
	if (index == 0)
		realPath += "1.mp4";
	else if (index == 1)
		realPath += "2.mp4";
	else if (index == 2)
		realPath += "3.mp4";
	else if (index == 3)
		realPath += "4.mp4";
	else if (index == 4) {
		realPath += "5.mp4";
		index = -1;
	}
	index++;
	video.setAttribute('src', realPath);
	video.play();
});

$("#click").trigger("click");
</script>
</html>


It works.
But I press click button continuously, RAM increasing.
Why RAM increasing?
QuestionWhy positioning is not working? Pin
Jassim Rahma24-Oct-15 0:45
Jassim Rahma24-Oct-15 0:45 
AnswerRe: Why positioning is not working? Pin
Shmuel Zang24-Oct-15 20:39
Shmuel Zang24-Oct-15 20:39 
AnswerRe: Why positioning is not working? Pin
Coing_Addict27-Oct-15 6:10
Coing_Addict27-Oct-15 6:10 
Questionadd this type of Spinner Pin
Jassim Rahma23-Oct-15 9:59
Jassim Rahma23-Oct-15 9:59 
AnswerRe: add this type of Spinner Pin
Debojyoti Saha27-Oct-15 3:05
professionalDebojyoti Saha27-Oct-15 3:05 
QuestionGenerate Temporary URL for a file Pin
Jassim Rahma23-Oct-15 7:01
Jassim Rahma23-Oct-15 7:01 
AnswerRe: Generate Temporary URL for a file Pin
Debojyoti Saha27-Oct-15 2:38
professionalDebojyoti Saha27-Oct-15 2:38 
QuestionHide download URL in PHP Pin
Jassim Rahma21-Oct-15 13:22
Jassim Rahma21-Oct-15 13:22 
AnswerRe: Hide download URL in PHP Pin
F-ES Sitecore21-Oct-15 23:29
professionalF-ES Sitecore21-Oct-15 23:29 
AnswerRe: Hide download URL in PHP Pin
Coing_Addict27-Oct-15 6:18
Coing_Addict27-Oct-15 6:18 
AnswerRe: Hide download URL in PHP Pin
Mona sinha11-Nov-15 18:35
professionalMona sinha11-Nov-15 18:35 
QuestionBLOB or URL for PDFs? Pin
Jassim Rahma21-Oct-15 5:08
Jassim Rahma21-Oct-15 5:08 
AnswerRe: BLOB or URL for PDFs? Pin
W Balboos, GHB22-Oct-15 1:52
W Balboos, GHB22-Oct-15 1:52 
AnswerRe: BLOB or URL for PDFs? Pin
Varun Sriram4-Nov-15 2:36
professionalVarun Sriram4-Nov-15 2:36 
QuestionASP 1.0 and SQL Server 6.5, circa 1996 Pin
Daniel Miller20-Oct-15 7:47
professionalDaniel Miller20-Oct-15 7:47 
Questionhelp on jquery vs angular js Pin
RebelStar18-Oct-15 20:58
professionalRebelStar18-Oct-15 20:58 
AnswerRe: help on jquery vs angular js Pin
Debojyoti Saha19-Oct-15 2:12
professionalDebojyoti Saha19-Oct-15 2:12 

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.