Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Wednesday, January 13, 2010

jQuery UI Multiselect

Plugin: jQuery UI Multiselect

Features :

  • Search within available options, if there are a lots of them
  • Displaying counts of selected and available items
  • Select All / Deselect All Buttons
  • Dragging items from the available list to the selected list directly

Tuesday, January 6, 2009

Backgrounds and Patterns for Designers


36 Must Have Backgrounds and Patterns Resources for all Designers
Backgrounds and Patterns for Designers


Wednesday, June 11, 2008

Disable Page Printing...


This is a Microsoft only solution and you should include these Attributes in your BODY Tag...

<body onBeforePrint="document.body.style.display='none'"; onAfterPrint="document.body.style.display='';">

This is a CSS cross-browser solution which should be included as a separate section in the HEAD of your page...
<style media='print'>
BODY { display:none;}
</style>

Disable Browser Cache...


Include this META Tag in the HEAD section of your page along with the other META Tags...
microsoft/mozilla/netscape browsers all require this meta tag
<meta http-equiv='Pragma' content='no-cache'>
microsoft browsers require this additional meta tag as well
<meta http-equiv='Expires' content='-1'>

and then include this second HEAD section between the BODY closing Tag and HTML closing Tag...
add this extra head section if you find your pages are still being cached in some browsers
</body>
<head>
<meta http-equiv='Pragma' content='no-cache'>
</head>
</html>

JavaScript Disabled...

Add this Markup to the HEAD section of your page, immediately below the META Tags ...

If JavaScript Disabled page will be redirected to given URL

<noscript>
<meta http-equiv='REFRESH' content='0;URL=redirect-error-page.html'>
</noscript>

Disable Copy/Paste ...


Add these attributes to the BODY Tag to disable copy/paste everywhere on the page...

<body ondragstart='return false' onselectstart='return false'>

or better still add this script to the JavaScript section in the HEAD of your page...
" document.body.ondragstart = 'return false' ; "
" document.body.onselectstart = 'return false'; "

Disable Image Toolbar


Use this Markup to disable Image Toolbar for all images on the page ...
<meta http-equiv='imagetoolbar' content='no'>

Use this Markup to disable Image Toolbar for individual images ...
<img src='imagename.gif' width='250' height='250' galleryimg='no'>

Disable Right Click


Add this attribute to the BODY Tag to disable the context menu everywhere on the page ...
<body oncontextmenu='return false'>

Add this Attribute to an IMG Tag to disable the context menu for individual images ...

<img src='imagename.gif' width='250' height='250' oncontextmenu='return false'>