This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<ul id="dishes"> | |
<li data-id="123">asdsadsadada</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("start"); | |
$("li").click(function () { | |
console.log("click event start"); | |
$(this).slideUp(1000).css('background', 'orange'); | |
$("<li>1234</li>").appendTo($("ul:last")); | |
console.log("click event end"); | |
}); | |
console.log("end"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>JS DEMO</title> | |
</head> | |
<body> | |
<input type="text" class="ttt"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.r { | |
clear:left; | |
} | |
.cell { | |
border: 1px solid #555; | |
width: 40px; | |
height: 40px; | |
float:left; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.r { | |
clear:left; | |
} | |
.cell { | |
transition: background 0.4s; | |
border: 1px solid #555; | |
width: 40px; | |
height: 40px; | |
float:left; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license=unknown |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" ng-app> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Super Angular!!!</title> | |
<style> | |
.ng-cloak { | |
display: none; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" ng-app> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Super Angular!!!</title> | |
<style> | |
.ng-cloak { | |
display: none; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
console.log("app starts"); | |
var mymod = angular.module("mymodule", []); | |
mymod.run(function udi($rootScope) { | |
console.log("mymod is loading!!!"); | |
$rootScope.x = "ROOT!"; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" ng-app="store"> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="bootstrap/css/bootstrap.css"> | |
<title>Our Store!!!</title> | |
</head> | |
<body> | |
<div class="container" ng-controller="StoreCtrl"> |