//sample solution to script.js $(function() { // Write the code applying the .sortable() modifier to the sortlist $("#sortlist").sortable(); });
Quotes help make search much faster. Example: "Practice Makes Perfect"
Monday, November 12, 2012
Codecademy: "Sort and swap with sortable()"
//sample solution to script.js $(function() { // Write the code applying the .sortable() modifier to the sortlist $("#sortlist").sortable(); });
Labels:
Codecademy,
jQuery
Subscribe to:
Post Comments (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
<!-- sample solutions to Welcome to HTML! --> <h1>Bruce Wayne</h1> <!-- sample solutions to Speak in Paragraphs --> ...
-
<style> p { font-family: sans-serif; font-size:18px;} div#welcome p{ font-family: cursive; font-size: 24px; color: white; b...
-
<style> #content p {color: yellow;} p {color: purple;} p {color: green;} </style> <div id="content...
-
#sample solution def run(bottle): #your code here bottle.drink(250) bottle.refill(150) return bottle.amount_left cl...
-
// Sample Solution using System; namespace DocumentationHunt { class Program { static void Main(string[] args) { ...
-
//Sample solution to script.js $('document').ready(function() { $('#emptyTrash').click(function() { //remove the elemen...
-
//sample solution // Here is the array we will store results in var multiples = []; function multiplesOf(base, i) { // Base case ...
-
#sample solution def factorial(x): x = abs(x) #prevents error on negative numbers product = 1 for i in range(x): product = prod...
-
class Dog{ int age; public Dog(int dogsAge){ age = dogsAge; } public void bark() { System.out.println("Woof...
-
//Sample solution to script.js $('document').ready(function() { $('#changeButton').click(function() { //note: //the di...
No comments:
Post a Comment