Hellow!
I have script from experts-exchange:
<script type="text/javascript">
var prevSelect=0;
function showDivSelect(divID) {
if(document.getElementById(divID))
{
...
hi Experts this is my code in javascript.
function CheckSum()
{
var carCode = event.keyCode;
if ((carCode < 48) || (carCode > 57) )
{
...
I am not able to cause a submit button click in FireFox. I have a form that opens and closes allowing the user to edit fields. When they click the close I want to show a overlay saying "Would ...
Hello Experts,
I am trying to implement list manager using jquery, so far i have managed to create a short list by allowing users to add or remove items with the animation. I am attaching bot...
Hi,
I am trying to parse an XML file in order to read data from the XML file. I am using an Xpath expression in javascript in order to parse the XML file. Everything works fine in INterne...
I need to disable certain checkboxes based upon a list selection
i need to be able to change the background color of an individual cell
with an onclick of a radio button.
each radio button will be able to change the cell to red, blue, green [ i will inc...
i'm busy converting an existing flash exe file, into a web based app to run in browser.
as per the code below, i'm simply wanting to open a pop up full screen etc.
its working fine with IE7...
I am working with a site that uses frames. The top frame of every page has a flash banner with sound that plays in a loop. (I can get access to the fla file if I need to).
I have attached t...
Hello Folks,
I am using jQuery append function to show "clear button" on anchor onclick event, the problem is its adding the button every time i click on the anchor tag. is there anyway we c...
i have the following code that works great on a disabled text box, but it only works on one text box.
can you help me figure out how to make this work with mutliple boxes?
thanks
my c...
I have a form that uses AjaxAnywhere that is losing the focus to the next input tag following an ajaxAnywhere.submitAJAX(); call. This only occurs in IE, Mozilla works fine.
I maintain t...
There's a great demo on the BlockUI plugin page for jQuery of a blue layer overlaying the page, then fading out. Unfortunately, I am a complete novice at jQuery and cannot get what I need to w...
I have a div
<div id='boxedit' style='position: fixed; top: 50px; left: 100px; width: 450px; height: 400px; background-color: #FFFFFF; border: thin double rgb(0,0,0);'>
<span id='click_and...
I am trying to dynamically add onclick events with parameters to img tags on my page. I found the question related to this one and came up with the following line of code:
someIMG.onclick =...
Hi,
I have dropdown,
<asp:dropdownlist id="Lst_Town" runat="server" onchange="fillCountry(this.selectedIndex);" ></asp:dropdownlist>
The dropdown is assigned as follwoing,
DataTextFiel...
Hi Experts,
I've been trying to create an effect like the one on the large images on this site: http://www.interiors.davroc.co.uk/ but can't get the images to fade in and out smoothly, espe...
Hi Everyone,
I am a bit new to AJAX, but thought I'd have a go at creating a page which will load other pages into itself, but only if the URL is available. I seem to be getting the famous ...
Hi, As you know there is a bug in IE which send request number 12030 when do ajax request, somebody suggest to get rid from this problem as this one: http://community.xajaxproject.org/viewtopi...
Hi, I am having a problem with IE not behaving properly (surprise). I am getting an error in IE 6 & 7 but not in FireFox.
any help would be greatly appreciated. I am actually not the develo...
HI experts!
I have 2 radio Buttons in this radio Button List, the "One" show the "span" and the "Two" hide the "span":
<asp:RadioButtonList CssClass="label" AutoPostBack="true" ID="rblNumber...
I have a situation where I would like to find the parent element of the current element, and I'd like to do so without cluttering up my code with an ID for every element that I need to find.
...
I've got an interesting problem, and I'm not sure what the probem is. I've got a web app that works by displaying an image file in an <img> tag, and I need to be able to open an image file tha...
Hi Everyone,
It seems that window.history.go(-1) does not work in Firefox. Is there an alternative which works in both IE and Firefox and does exactly the same?
Thanks in advance,
Andy
Hi All,
I have different input forms wrapped in divs, i.e.
<div >
<div>
<input .....
The outer div may be either hidden or visible. The question: how to find i...