The main elements used in SOAP are:
1. Envelope
2. Header
3. Body
4. Fault (optional)
Please login to post an answer.
The possible values of the 'position' attribute in CSS are:
1. static
2. relative
3. absolute
4. fixed
5. sticky
The position properties in CSS dictates how the browser should arrange elements on the page, and it has five possible values that differ somewhat in their layout behavior. The five position values are relative, fixed, inherit, static, and absolute.
No we can't send mail using javascript. java script is a
client side scripting.
To send a mail we need a server side scripting like PHP.
This Script checks the given number as well as string is palindrome or not
<html>
<body>
<script type="text/javascript">
function checkPalindrome() {
var revStr = "";
var str = document.getElementById("str").value;
var i = str.length;
for(var j=i; j>=0; j--) {
revStr = revStr+str.charAt(j);
}
if(str == revStr) {
alert(str+" -is Palindrome");
} else {
alert(str+" -is not a Palindrome");
}
}
</script>
<form >
Enter a String/Number: <input type="text" id="str" name="string" /><br />
<input type="submit" value="Check" onclick="checkPalindrome();"/>
</form>
</body>
</html>
malayalam