The following JavaScript convert something like
<span id="container">
<span id="data">
some data
</span>
</span>
to
<span id="container">
<select id="data" name...
I am using javascript but its not fully proofed as per my requirements, Through browser Edit option user can be paste value in text box but I dont want , user can not be copy/paste data in th...
Hi
I am using
body {
behavior:url("csshover.htc");
}
to emulate the hover function in IE6.
I have two different drop-down menus using it in the same page, one of them works, the other...
Hi all!
I would like to have a small javascript who enables / disables a text field by clicking on a checkbox
Status Exammple:
checkbox.checked = textfield.disabled
checkbox.unchecked...
I have a form that I want to submit when the user presses Enter. The action URL is determined when the form is submitted based on what the user has selected from a dropdown. In IE, the form is...
I am trying to close a browser WINDOW including all open tabs using Javascript. The window (and tabs) were manually opened. Using window.close() only closes the current tab. What I need it to ...
Hi,
I want to get the previous page name in Javascript. So I am using document.referrer to get the name. But it does not work in IE or Firefox. Is there a way by which I can get the previou...
How can i use the lightbox effect (http://www.huddletogether.com/projects/lightbox/) on mouseover, so instead of clicking i just hover the mouse over the image to display enlarged image.
I need a good, reliable, cross-browser rich text editor for a content management system.
I created an AJAX ASP.NET website. When I run the site in IE, with debugging on, I get:
A runtime error has occurred. Do you wish to Debug?
Line: 43
Error: 'null' is null or not an object
...
I need to get the width of a div element with offsetWidth... In Firefox, as usual, everything works, but in IE, the offsetWidth returned is 0 ! Why !?
The width has no width set in it's CSS...
I have attached working fine except when I tried to backspace the number format does not seem working. For example, first I put
25000 and it will automatically change to 25,000 that is what i...
We use Quantisense at work, an online database designer. The interface is run entirely online, and the process of running queries consists of going through menus and pressing online buttons t...
How to reload page without prompting the message box of retry and cancel
i want to navigate to another page in a javascript function....can i use <a href inside javascript ..but mind you i do not want to use window.open() which opens a new window instead of...redir...
I want to compare a value from a form that uses radio buttons for a list box. I am using getElementsByName in my javascript with success for checked boxes and text boxes however I am not havin...
Hi Experts, I am a newby here as well as with jQuery and JavaScript; hope someone will be able to help me.
Have an xml file, I loop through that xml file to create a display of vacancies, so...
Hi,
I need removing href component for all links on the page and adding onClick function call for the same href link (slightly modified). Here is my code:
<script type="text/javascript">...
I need create a php function tocontrol input text mask
$mask="##.###"; preformated imput like |__.___|
$html.="<input type"text" maxlengh="6" name="".$fieldname."" value="".$defaulvalue.""...
I have a page on during the checkout of my shopping cart that I cannot edit directly, but I can add HTML/JavaScript above or below the page.
I want to delete a certain part of the page. I've ...
this is what i have:
...
function toggleMe(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block"
} else {
...
I have created a user control.In it i have used datepicker cintrol for selecting a date.In it i m looking for to check that the end date should not be less than start date.here i am using cust...
Hi All,
I'm creating an intranet web application with VB.NET, javascript and AJAX. I have an AJAX autocomplete text box that holds all employee names. I do not want to allow end-users the...
Hi every one i have following code:
and i need to replace:
onclick="openw('http://www.google.com/',0,0,0,0,0,1,1,900,900,200,1,1);" value="openw"
to this using window.onload event
...
I am attempting to authenticate users through JScript (server side) code and Active Directory. In its current behavior the code below throws an empty exception (e.description == "") if the use...