javascript

css background image move

I have image in website's header as background. Now, when page is loaded, I'd like to move it slowly from left to right (about 100 pixels) and then stop. Is there any not too complex way to do that? ...

JavaScript within an <a> tag, nested, quote problem

Here is simple <a> tag, which links to an exe file. The onClick JavaScript event redirects the user to another webpage after 3 seconds. <a href="http://www.example.com/download.exe" onClick="setTimeout('window.location="/downloading.html"',3000);return true;"> LINK</a> So it doesn't work because there are too many nested quotes. The ...

Replace a list of emoticons with their images

Hello, I have an array with: emoticons = { ':-)' : 'smile1.gif', ':)' : 'smile2.gif', ':D' : 'smile3.gif' } then i have a variabile with the text. var text = 'this is a simple test :)'; and a variable with the url of the website var url = "http://www.domain.com/"; How to write a function that replace the symbols ...

Trouble adding success flag to onbeforeunload

having issues with onbeforeunload. I have a long form broken into segments via a jquery wizard plug in. I need to pop a confirm dialog if you hit back, refresh, close etc on any step but need it to NOT POP the confirm dialog on click of the submit button. had it working, or at least I thought, it doesn't now. <script type="text/javascr...

What Ext JS Framework files are necessary in a working site?

I've inherited a high-traffic site that loads some Ext javascript files and I'm trying to trim some bandwidth usage. Are Ext libraries necessary for development only or are they required for the finished site? I've never used Ext.: Ext JS - Client-side JavaScript Framework The site loads ext-base.js (35K), ext-all-debug.js (950K), expa...

XSS to change ASP.NET session state

Hello! I am developing the application that stores current user and user's role to session state (System.Web.SessionState.HttpSessionState Page.Session). if (Session["username"] == null) Session.Add("username", User.Identity.Name); if (Session["isAdministrator"] == null) Session.Add("isAdministra...

How to change security configutarion in IE8 for Intranet pages, such that Javascript can close a Window without asking?

I am developing a system that uses a little Internet page as a front-end for the whole program. Since I need to use ActiveX (sigh), the page must work on Internet Explorer. However, after some actions have been done the page needs to close itself. Using window.close() on Javascript it works, but before closing it prompts the user if it ...

jQuery setinterval does not show first element

Hi, I am creating this content slider, you can view/edit here: http://jsbin.com/esame4 I have put in place setInterval so that animation runs automatically, however, when it is run for the first time, google image is shown but not afterwords. Should be simple but i am unable to figure out the problem. ...

What is wrong with selecting with my drop down element.

<html> <head> <script type='text/javascript' language='javascript' src="http://localhost/javascript/jquery-1.4.2.js"&gt; </script> <script type='text/javascript' language='javascript'> $(document).ready(function(){ $("#button").mousedown(function(){ dropDownMenu = $(...

input tags with array

Hi , Recently i am doing a project in which i encountered a strange problem this is the program which previous programmer did MPAN <input name="mpan[]" id="mpan[]" value="" maxlength="2" size="2" > ///this one to read <input name="mpan[]" id="mpan[]" value="" maxlength="3" size="3"> <input name="mpan[]" id="mpan[]" value="" maxlen...

Elegent methods for caching search results from RESTful service?

I have a RESTful web service which I access from the browser using JavaScript. As an example, say that this web service returns a list of all the Message resources assigned to me when I send a GET request to /messages/me. For performance reasons, I'd like to cache this response so that I don't have to re-fetch it every time I visit my Ma...

How do I create a preloading cache page?

What I'm after is creating a page that has a preloading bar (similar to a flash one) that loads the cache of the website before redirecting to them to the home page with the entire website loaded, so it runs smoothly! ...

Google Maps API V3 and stringByEvaluatingJavaScriptFromString?

Hi, I'm writing up an iPhone app using the Google Maps API V3, and I was wondering if it is still possible the use the stringByEvaluatingJavaScriptFromString function in the (void)webViewDidFinishLoad:(UIWebView *)webView function? A simple example being changing the map type (Assuming basic map setup): - (void)webViewDidFinishLoad:(UIW...

Why the following regex does not work in IE?

Why does the following javascript regex works in Firefox but not in IE (tested on IE8). myregexp = eval('/(?:^|;)\s*(\d+)\s*:[^;]*?megason[^;]*/gi'); myregexp.exec('0:QL12345ABC - MEGASONIAC BEST CAFE;'); //returns null in IE8 ...

Javascript getElementsByTagName broken firefox?

I'm getting the weirdest issues with Javascript in Firefox today. I'm trying to manipulate some table rows, but .getElementsByTagName("tr"); is pulling back junk. dynamicTable.tableBody = dynamicTable.getElementsByTagName("tbody")[0]; var tableRows = dynamicTable.tableBody.getElementsByTagName("TR"); var actualTableRows = new Array(); ...

Google Maps marker as a link

Hello, I am using Google Maps for my website and I wander how can I use the Markers as links? I mean when I click a marker to open a particular link. Thank you in advance! ...

copy - paste in javascript

I have this code <input name="mpan[]" value="" maxlength="2" size="2"> <input name="mpan[]" value="" maxlength="2" size="3"> <input name="mpan[]" value="" maxlength="2" size="3"> <input name="mpan[]" value="" maxlength="2" size="12"> What I have to do is I am provided with a large key for example 0380112129021. When I do Ctrl+C on t...

Get Json and output to text file undecoded

Hi, I want to fetch json script and write it to a txt file undecoded, exactly how it was originally. I do have a script that I use that I am modifying but unsure what to commands to use. This script decodes, which is what I want to advoid. //Get Age list($bstat,$bage,$bdata) = explode("\t",check_file('./advise/roadsnow.txt',60*2+15))...

Dynamic Iframe printing

I want to dynamically set the content of an iframe to that of an html document I have. It is in the form of a string in memory in javascript. Then i want to print that iframe. Ideas? ...

How can I add an onclick handler on a dynamic element?

Here is the important part of my JS code: function createClose() { var cButton = document.createElement("img"); cButton.src = "close.gif"; cButton.style.cursor = "pointer"; cButton.onclick = closeWindow; document.getElementById("my_window").appendChild(cButton); } function closeWindow() { document.getElementById("my_window...