<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MsDotNetMentor &#187; Javascript</title>
	<atom:link href="http://www.msdotnetmentor.com/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.msdotnetmentor.com</link>
	<description>Knowing Is Not Enough We Must Apply</description>
	<lastBuildDate>Mon, 09 Jan 2012 20:57:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Describing window.open method</title>
		<link>http://www.msdotnetmentor.com/javascript/describing-window-open-method.html</link>
		<comments>http://www.msdotnetmentor.com/javascript/describing-window-open-method.html#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:55:25 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[window.open method]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=723</guid>
		<description><![CDATA[Using the window.open method by Gaurav Arora
The syntax of the window.open method is given below:
open (URL, windowName[, windowFeatures])
URL
This is the URL of the page which open in the new window.
It  could be blank.
windowName
A name to be given to the new window.
The name can be used to refer this window again.
windowFeatures
It contains  the various window
features for the popup window i.e.  status bar, address bar etc
The following lines of code, open a  new browser window with standard features :
window.open ("http://interview.msdotnetheaven.com","MsDn Interview Questions");
Changing the features of the Popup
By using ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/javascript/describing-window-open-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing BackGround Color using JavaScript</title>
		<link>http://www.msdotnetmentor.com/javascript/changing-background-color-using-javascript.html</link>
		<comments>http://www.msdotnetmentor.com/javascript/changing-background-color-using-javascript.html#comments</comments>
		<pubDate>Thu, 02 Jul 2009 18:10:24 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Meetu]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[meetuchoudhry]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=566</guid>
		<description><![CDATA[The following code shows how on button click event we can change the background color of the page.
&#38;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#38;gt;html xmlns="http://www.w3.org/1999/xhtml" &#38;gt;
&#60;head&#62;
&#60;title&#62;Changing the Backgound color on Button Click&#8211;Meetu&#60;/title&#62;
&#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&#62;
function prog1()
{
document.bgColor=&#8220;red&#8221;;
}
function prog2()
{
document.bgColor=&#8220;green&#8221;;
}
&#60;/script&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;input id=&#8221;Button1&#8243; type=&#8221;button&#8221; value=&#8221;green&#8221; onclick=&#8221;prog2()&#8221; /&#62;
&#60;input id=&#8221;Button2&#8243; type=&#8221;button&#8221; value=&#8221;red&#8221; onclick=&#8221;prog1()&#8221; /&#62;&#60;/body&#62;&#60;/html&#62;
Thanks and Regards
Meetu Choudhary
Go Green Save Green
 Tweet This Post

No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/javascript/changing-background-color-using-javascript.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Move Cursor to the Last Index in The  Texbox</title>
		<link>http://www.msdotnetmentor.com/javascript/move-cursor-to-the-last-index-in-the-texbox.html</link>
		<comments>http://www.msdotnetmentor.com/javascript/move-cursor-to-the-last-index-in-the-texbox.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:33:16 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[lastindex of textbox]]></category>
		<category><![CDATA[Meetu]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[meetuchoudhary]]></category>
		<category><![CDATA[Move cursor]]></category>
		<category><![CDATA[Move cursor postion in asp.net c#]]></category>
		<category><![CDATA[Move Cursor to the Last Index in The Texbox]]></category>
		<category><![CDATA[moveindex]]></category>
		<category><![CDATA[textbox]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=537</guid>
		<description><![CDATA[Code for script section in the head
&#60;script type=&#8220;text/javascript&#8221; language=&#8220;javascript&#8221;&#62;
function moveindex() {
var me2 = document.selection.createRange();
me2.moveStart(&#8220;character&#8221;, 200);
me2.select();
}
&#60;/script&#62;
code for calling the function in the body section
&#38;lt;asp:TextBox ID="TextBox1" runat="server" onfocus="moveindex()"/&#38;gt;
Thanks and Regards
Meetu Choudhary
 Tweet This Post

No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/javascript/move-cursor-to-the-last-index-in-the-texbox.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Showing Image Dynamically</title>
		<link>http://www.msdotnetmentor.com/javascript/showing-image-dynamically.html</link>
		<comments>http://www.msdotnetmentor.com/javascript/showing-image-dynamically.html#comments</comments>
		<pubDate>Wed, 17 Jun 2009 05:38:04 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[display dynamic images]]></category>
		<category><![CDATA[dynamic images]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Meetu]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[meetuchoudhary]]></category>
		<category><![CDATA[MsDotnetMentor]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=524</guid>
		<description><![CDATA[This piece of code demonstrate that when we take mouse on a particular image the place holder for the image displays the corresponding image&#8230; here goes the code
&#38;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#38;gt;
&#38;lt;html xmlns="http://www.w3.org/1999/xhtml" &#38;gt;
 &#38;lt;head&#38;gt;
&#60;title&#62;Meetu Choudhary&#60;/title&#62;
Script for head section
&#38;lt;script language="javascript" type="text/javascript"&#38;gt;
function showimage(imagename)
{
targetimage.src="images/" + imagename;
}
&#38;lt;/script&#38;gt;
&#38;lt;/head&#38;gt;
Body will have these contents.. 
&#60;body&#62;
&#38;lt;table width="694" height="525" border="0"&#38;gt;
&#38;lt;tr&#38;gt;
&#38;lt;td width="141" height="95" valign="top"&#38;gt;
&#38;lt;img src="images/image1.jpg" onmouseover="showimage('image1.jpg')" width="141" height="93"&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;td width="141"&#38;gt;
&#38;lt;img src="images/image2.jpg" width="141" height="93" onmouseover="showimage('image2.jpg')"&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;td width="141"&#38;gt;
&#38;lt;img src="images/image3.jpg" width="141" height="93" onmouseover="showimage('image3.jpg')"&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;td width="139"&#38;gt;
&#38;lt;img src="images/image4.jpg" width="141" height="93" onmouseover="showimage('image4.jpg')"&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;td width="98"&#38;gt;
&#38;lt;img src="images/image5.jpg" width="141" height="93" onmouseover="showimage('image5.jpg')"&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;tr&#38;gt;
&#38;lt;td height="424"&#38;gt;&#38;amp;nbsp;&#38;lt;/td&#38;gt;
&#38;lt;td colspan="3" valign="top"&#38;gt;
&#38;lt;img id="targetimage" src="images/image1.jpg" width="420" height="252"/&#38;gt;
&#38;lt;/td&#38;gt;
&#38;lt;td&#38;gt;&#38;amp;nbsp;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;/table&#38;gt;
&#38;lt;/body&#38;gt;
&#38;lt;/html&#38;gt;
 
To ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/javascript/showing-image-dynamically.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Hide ComboBoxes : Using JavaScript</title>
		<link>http://www.msdotnetmentor.com/javascript/show-hide-comboboxes-using-javascript.html</link>
		<comments>http://www.msdotnetmentor.com/javascript/show-hide-comboboxes-using-javascript.html#comments</comments>
		<pubDate>Sat, 14 Mar 2009 18:23:56 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[combo boxes]]></category>
		<category><![CDATA[gaurav arora]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[msdotnetheaven]]></category>
		<category><![CDATA[msdotnetheaven.com]]></category>
		<category><![CDATA[MsDotnetMentor]]></category>
		<category><![CDATA[runtime]]></category>

		<guid isPermaLink="false">http://www.msdotnetheaven.com/?p=438</guid>
		<description><![CDATA[Show or Hide combobox at Runtime using JavaScript
Many a times in the programming world we feel the need to hide or show the drop1down lists or combo boxes of the particular page or a div or anyother control so here is a small snippet 
The Following is the JavaScript function to achieve the above you can embede it in any external JavaScript file or  write as an inline script or include in the head section&#8230;
function showOrHideAlldrop1Downs(newState)
{
        var elements = document.documentElement.getElementsByTagName(&#8216;select&#8217;);
   ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/javascript/show-hide-comboboxes-using-javascript.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

