Archive for March, 2010

Website Design Prices | Web Development Cost

Tuesday, March 30, 2010 1:02 7 Comments

Web site design prices. Typical price of websites and web design rates for several example sites. How much does a website cost? Do you need Web Design Rates? How much does outsourcing cost?

This was posted under category: Altmint Tags: , , , , , , , , , , ,

yourquidget – Make your own quiz widget

Monday, March 29, 2010 3:33 6 Comments

Yourquidget is a FREE online quiz generator help you to create your own quiz widget for your site. quizzes can be styled and customized to match the dimensions and colors of your site

This was posted under category: Altmint Tags: , , , , , , , , ,

Alter Css Properties with Jquery

Thursday, March 25, 2010 9:40 No Comments

how to change the Properties of class or id with javascript?
It is very simple with jquery. we can alter or add any css property to the class or id. here is a sample example for it.
Assuming Jquery is Included
$(”#IdName”).css(”color”,”red”);
(or)
$(”.Classname”).css(”color”,”red”);

This was posted under category: JavaScript Tags: , ,

CSS Properties To JavaScript Reference Conversion

Thursday, March 25, 2010 8:29 2 Comments

CSS Properties To JavaScript Reference Conversion

CSS Property
JavaScript Reference

background
background

background-attachment
backgroundAttachment

background-color
backgroundColor

background-image
backgroundImage

background-position
backgroundPosition

background-repeat
backgroundRepeat

border
border

border-bottom
borderBottom

border-bottom-color
borderBottomColor

border-bottom-style
borderBottomStyle

border-bottom-width
borderBottomWidth

border-color
borderColor

border-left
borderLeft

border-left-color
borderLeftColor

border-left-style
borderLeftStyle

border-left-width
borderLeftWidth

border-right
borderRight

border-right-color
borderRightColor

border-right-style
borderRightStyle

border-right-width
borderRightWidth

border-style
borderStyle

border-top
borderTop

border-top-color
borderTopColor

border-top-style
borderTopStyle

border-top-width
borderTopWidth

border-width
borderWidth

clear
clear

clip
clip

color
color

cursor
cursor

display
display

filter
filter

font
font

font-family
fontFamily

font-size
fontSize

font-variant
fontVariant

font-weight
fontWeight

height
height

left
left

letter-spacing
letterSpacing

line-height
lineHeight

list-style
listStyle

list-style-image
listStyleImage

list-style-position
listStylePosition

list-style-type
listStyleType

margin
margin

margin-bottom
marginBottom

margin-left
marginLeft

margin-right
marginRight

margin-top
marginTop

overflow
overflow

padding
padding

padding-bottom
paddingBottom

padding-left
paddingLeft

padding-right
paddingRight

padding-top
paddingTop

page-break-after
pageBreakAfter

page-break-before
pageBreakBefore

position
position

float
styleFloat

text-align
textAlign

text-decoration
textDecoration

text-decoration: blink
textDecorationBlink

text-decoration: line-through
textDecorationLineThrough

text-decoration: none
textDecorationNone

text-decoration: overline
textDecorationOverline

text-decoration: underline
textDecorationUnderline

text-indent
textIndent

text-transform
textTransform

top
top

vertical-align
verticalAlign

visibility
visibility

width
width

z-index
zIndex

Usage
Internet Explorer
document.all.div_id.style.JS_property_reference = “new_CSS_property_value”;
Older Netscape’s (4.7 and earlier)
document.div_id.JS_property_reference = “new_CSS_property_value”;
Netscape 6.0+ and Opera (and other Mozilla)
document.getElementById(div_id).style.JS_property_reference = “new_CSS_property_value”;
Note the use of parentheses instead of square brackets in newer Mozilla’s “getElementById()” reference.

This was posted under category: JavaScript Tags: ,

Display all PHP Errors and Warnings

Saturday, March 20, 2010 1:14 3 Comments

How do i display errors in php if error display setting is off in my server configuration?
Here are the two simple things to display errors even if the error display setting is off in server.

error_reporting(E_ALL);
ini_set(’display_errors’, ‘1′);

This was posted under category: PHP Tags: , ,

JavaScript Image Rotator

Tuesday, March 9, 2010 2:40 1 Comment

We can rotate the image by angle.here is a source code for it ..( rotate an image by an arbitrary angle, it works in IE7 & FF3

<html>
<head>
<!–
**** Universal JavaScript Image Rotator v1.1 (16-03-2009)
//–>
<script type="text/javascript">
<!–
//******************** Image parameters *******************
imagename='kk.jpg'
xsize=180
ysize=240
//*********** nothing to configure below this line ********
//–>
</script>
</head>
<body style="margin:20px">
<H1>Universal JavaScript Image Rotator v1.0 (14-03-2009)</H1>
<div id="container" style="overflow:hidden">
<script type="text/javascript">
<!–
[...]

This was posted under category: JavaScript Tags: , , , ,