javascript

how do i keep form data after submitting the form using javascript?

When i submit this form, the values just disappears from the textboxes. I like them to stay printed in the textboxes. How do i do that? <form id="myform" method="get" action="" onSubmit="hello();"> <input id="hour" type="text" name="hour" style="width:30px; text-align:center;" /> : <input id="minute" type="text" name="min...

Autocomplete and User define keyboard

Hi All, I am using asp:button to create a keyboard with A-Z and 0-9 for touch screen using Java script. This keyboard is linked with one textbox. If we click one button corresponding text will be displayed on the textbox. Its working fine. I have included the autocomplete feature to this textbox using jquery JQuery Autocomplete. Proble...

Jquery How to change url for every ajax respond

$(".blok").newWindow({ windowTitle:"Example1", ajaxURL:"Action.php?task=BlokDuzenleFormGetirBlokId="+$(".blok").attr('id') }); when first clicked on blok class a href, newWindow loads from data by $(".blok").attr('id'). Then every action sen same url to ajax, with not change. is there a way change url every single respond to call fun...

JavaScript - get detailed information about the browser

Basically I'm looking for something to give me easy access to information like useragentstring.com, but in JS, without me parsing the user agent and looking for each possible bit of text. The object could be something like this: browser = UserAgent.Browser; // Chrome browserVer = UserAgent.BrowserVersion; /...

What are the typical reasons Javascript developed on Firefox fails on IE?

I developed some javascript enhanced pages that run fine on recent Firefox and Safari. I missed to check in Internet Explorer, and now I find the pages don't work on IE 6 and 7 (so far). The scripts are somehow not executed, the pages show as if javascript wasn't there, although some javascript is executed. I am using own libraries with ...

Overriding previously set float using javascript in ie

I've read this question to figure out how to set float:none on an element which already has float:right set with class. I used element.style.cssFloat = "none", but this just added a new style property cssFloat which didn't over-ride the existing float:right. I've now fixed it using the adding/removing classes method. But is there a way...

return type of modal dialog box is undefined

Hi, I am using the modal dialog box to open the modal dialog. Here is the code var Window; function PopDis() { Window=window.showModalDialog('/collector/modalBox.jsp', '', 'dialogHeight:300px; dialogWidth:500px;scroll:no; status:no; help:no; center:yes; resizable:no'); } In another function i want to close the modal dialog. Cod...

How to integrate a GWT app into another Web-Framework?

I need the ability to load and start a GWT App at any time in an Echo2 environment. My first approach was to load and execute the nocache.js in a Client-Server sync using var script = document.createElement("script"); script.setAttribute("src",javascriptURI); script.setAttribute("type","text/javascript"); document.getElementsByTagName('...

How can i set size of openInfoWindowHtml in google Map

Please help me to change size of openInfoWindowHtml in google map and plez tell me can i make it popup out of map area also..? i mean my map area is very small but i want that when user click on Marker this openInfoWindowHtml should show popup and if its crossing size of map than its should show beyond the boundary of google map. ( i am ...

Adding value to an Input field on click

I have this structure on form, <input type="test" value="" id="username" /> <span class="input-value">John Smith</span> <a href="#" class="fill-input">Fill Input</a> when user click on the Fill Input , the data from span which has class input-value will be added to value, after clicking a tag the code should be look like this, <...

Display tabs like FireFox's on my website.

I want to implement with jQuery a tabbed interface for my website (like the firefox ones). They should also be able to be moved like the ones FireFox has. If anyone knows of an already written library, please give me a link. ...

IE problem with javascript

i have the following simple script <input class="input" type="text" name="password" style="color: #797272;" value= "<?php if ($_POST[password] != '') {echo '';} else {echo 'Ծածկաբառ';}?>" onclick="if (this.value === this.defaultValue) { this.value=''; this.style.color='b...

Does this create an array in JavaScript?

I am using the following JavaScript code: var a = [23, 34, 45, 33]; Is a considered an array of integers? ...

Javascript inside RSS file

I've been given a requirement to impliment some google tracking on an RSS feed. Currently we track when users click the RSS link but they also seem to want to track access to the RSS feed outside of that link. I could impliment this server side but I'm just wondering whether putting google tracking code (Javascript) inside of an RSS (XM...

How to call regular JS function with params within jQuery ?

Is there another way to run a regular JS function with params passed than what I use below ? It seems redundant use a on-the-way function to do this. function regularJSfunc(param1,param2) { // do stuff } $(document).ready(function(){ $('#myId').change(function(){ regularJSfunc('data1','data2'); }); } Using a .bind event ...

Sproutcore: adding a custom stylesheet or script

I just can't seem to find a good tutorial on this. It's simple: I want to link a stylesheet / js file to the HEAD section of my application. I found where the index.html file is (in tmp/build/static/my_project/en/current) and I can make changes to it, but I think this is the wrong way. ...

Textarea maxlength check

Textarea validation, How to limit the characters in a textarea for not exceeding more than 50 characters. <textarea rows="5" cols="15"></textarea> Thanks..... ...

What does JSLint's "Bad Escapement" mean in this case?

I thougth "bad escapement" stands for wrong use escaping with slash. Why does JSLint bring up the message in this function on the 3d line (for...)? function splitTags(commaSeparated) { var tagArray = commaSeparated.split(','); for (var i=(tagArray.length) - 1; i>=0; i = i - 1 ){ tagArray[i] = f.trim(tagArray[i]); }...

Why can't I toggle the visibility of every element (within a group) in a for statement, only the last element in the group gets toggled?

The script fires Toggle fine on each Control's (Controls[i]) Click. If the Control's first OL element is not Visible it should be set Visible and all other elements in Controls that are not the current Control (Controls[i]) should be set Hidden. If the Control's first OL element is Visible it should be set Hidden. .js function Toggle(C...

Retrieving ids of chid divs using jquery?

Hello, Please have a look on the code below .. <div id="click_me">Save</div> <div id="blocks_sortable"> <div id="block_1"> <h2>Block 1</h2> <div class="items_sortable connectedSortable"> <div id="item_1"> <span>Item 1</span></div> <div id="item_2"> ...