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
| <html> | |
| <head> | |
| <title>What type of device am I using?</title> | |
| </head> | |
| <body> | |
| <!-- Show the window width --> | |
| <div id="WinWidth"></div> | |
| <!-- Show the window height --> | |
| <div id="WinHeight"></div> | |
| <!-- Show the device type --> |
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
| <!--- How many pages should you link to at any one time? ---> | |
| <cfset intPagesToLinkTo = 5> | |
| <!--- How many items are you displaying per page? ---> | |
| <cfset intItemsPerPage = 10> | |
| <!--- How many items do you need to display, across all pages. ---> | |
| <cfset intNumberOfTotalItems = 100> | |
| <!--- What is the current page you are on? ---> | |
| <cfif isdefined("url.page")> | |
| <cfset intCurrentPage = val(url.page)> | |
| <cfelse> |
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-US"> | |
| <head> | |
| <title>How to display RSS via JavaScript</title> | |
| <!-- jQuery CDN --> | |
| <script src="http://code.jquery.com/jquery-latest.js"></script> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> |
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-US"> | |
| <head> | |
| <meta charset="windows-1252"> | |
| <title>Keep webform data persistent</title> | |
| <!-- jQuery CDN --> | |
| <script src="http://code.jquery.com/jquery-latest.js"></script> | |
| <style type="text/css"> | |
| /*Float the form labels to the left and allow them 40% of the width of the form*/ |
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-US"> | |
| <head> | |
| <meta charset="windows-1252"> | |
| <title>Experiment into client-side value storage</title> | |
| <script type="text/javascript"> | |
| // Does your browser support localstorage? | |
| if(typeof(Storage)=="undefined") | |
| { |
NewerOlder