IOS 7 Deletable List

Developer
Size
2,180 Kb
Views
30,360

How do I make an ios 7 deletable list?

This is an example of an iOS 7 list with deletable items. It uses the ChocolateChip-UI framework and runs on Safari and iOS 6 or 7. To enable deletion of list items, select the "Edit" button on the top right. After selecting a deletion indicator on the left of a list item, a red delete button appears on the right. You can swipe right with mouse or finger to dispel the delete button. Otherwise select it to delete an item.. What is a ios 7 deletable list? How do you make a ios 7 deletable list? This script and codes were developed by Robert Biggs on 24 August 2022, Wednesday.

IOS 7 Deletable List Previews

IOS 7 Deletable List - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>iOS 7 Deletable List</title> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msapplication-tap-highlight" content="no"> <link rel='stylesheet prefetch' href='https://s3-us-west-2.amazonaws.com/s.cdpn.io/77047/chui.ios-3.0.4.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body> <nav>	<h1>Deletable List</h1>
</nav>
<article id='main'>	<section>	<ul class='list'>	<li class='nav'>	<h3>People</h3>	</li>	<li class='nav'>	<h3>Places</h3>	</li>	<li class='nav'>	<h3>Things</h3>	</li>	<li class='nav'>	<h3>Animals</h3>	</li>	<li class='nav'>	<h3>Food</h3>	</li>	</ul>	<p id='response'></p>	</section>
</article> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/77047/chui-3.0.4.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

IOS 7 Deletable List - Script Codes CSS Codes

#response {	color: #007aff !important;
}

IOS 7 Deletable List - Script Codes JS Codes

$(function() {	$.UIDeletable({	list: '.list',	callback: function(item) {	var text = $(item).siblings('h3').text();	$('#response').html('You deleted: <strong>' + text + '</strong>');	}	});
});
IOS 7 Deletable List - Script Codes
IOS 7 Deletable List - Script Codes
Home Page Home
Developer Robert Biggs
Username rbiggs
Uploaded August 24, 2022
Rating 3
Size 2,180 Kb
Views 30,360
Do you need developer help for IOS 7 Deletable List?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Robert Biggs (rbiggs) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!