0
votes
0answers
14 views

JavaScript simple submit isin't working

Hey guys im having some problems with javascript, and i was wondering whether you could help me out? this is my html code <form name="form"> Enter your answer here : ...
0
votes
0answers
22 views

how to send hidden input value to php

My html code is bellow <li > <span class="add-on">ADdfgsdfgd</span> <input class="" type="text" value="" > <input class="picker" type="hidden" name="BIOLOGY" ...
1
vote
0answers
46 views

Resizing a web page dynamically

I am developing a bunch of small web applications that have an unknown window size as target. To solve this problem, I am developing very large layouts and scaling them according to the window size. ...
0
votes
0answers
11 views

Fix jerky/choppy scrollTop animation jquery

I have a small problem using scrollTop function. It doesn't work properly. My animation is not smooth and seems jerky/lagging. I tried it both on Firefox, Chrome and Safari, and always the same ...
0
votes
4answers
76 views

Reloading another PHP into a DIV

I've read countless articles regarding replacing a <div> with other content more specifically another PHP file. I cannot seem to get this to work. When I click either buttons absolutely nothing ...
0
votes
1answer
11 views

knockout.js observable is not updating

Team, I have a very simple html page with a viewmodel as follows. @{ Layout = null; } <!DOCTYPE html> <html> <head> <script ...
0
votes
2answers
62 views

how to put two text inputs values to hidden input

My HTML: <li style="display: none;"> <span class="add-on"></span> <input class="" type="text" value="" style="display: none;"> <input class="" type="hidden" ...
0
votes
0answers
31 views

onload function not working with jQuery UI tabs

I am using jQuery UI tabs, and in one of the tabs I'm calling an html file <li><a href="evol.html">Evol</a></li> This html file has a onload function to go to the database ...
0
votes
1answer
10 views

Focus Input Mid-Way Through Text

I know it's pretty easy to focus an input using JavaScript/ jQuery, but is it possible to focus the input on a certain character? So take this input: Would it be possible to focus the element and ...
0
votes
1answer
39 views

JavaScript: how to control progress speed?

Is the any option to increase and and decrease speed of the progress ? Some times progress take time and some time very very slow to finish var value = 0, interval = setInterval(function(){ ...
0
votes
1answer
24 views

What is the best coding standard to perform a webpage back?

What is better to use: history.back();, history.go(-1);, a new request entirely, or something completely different? What is the real difference between history.go(-1); and history.back();? What is ...
1
vote
3answers
34 views

How to resize the horizontal menu with respect to its li?

I have 7 menus in my code.Sometimes it may be 6 based on the usertype.If admin is entered it will be 7.User may have only 6 menus. How can resize the menu dynamically. For that I used the code ...
-4
votes
0answers
26 views

Is it an alternative to yahoo finance and YQL?

Well i need to get some information to display in one webpage i'm developing currently i have been lurking for information about YQL and yahoo finance api, this is the trouble yahoo.finance.quotes is ...
0
votes
2answers
37 views

how to select a input using jquery

My html is look like bellow (it's not a html i'm echo this using php.And it has lotof <li></li> with same 3 inputs content.it's a dynamically generate one) <li><span ...
-6
votes
0answers
32 views

Get the keyword used in a google search

How do I get the text written in the Google search textbox using javascript? EDIT : I am developing one Mozilla extension, i am using multiple functions to write the results of a Google search in a ...
2
votes
1answer
58 views

Jquery change event not working

I have html: <form id="fileuploadform"> <input type="file" id="fileupload" name="fileupload" /> </form> and jquery: $(':file').change(function(){ var file = ...
0
votes
0answers
18 views

Dropdown box on change event for multiple list box

my ($self, $c) = @_; $c->stash->{buildallinfo}=$c->model('DB::misc')->getTestInformation(); Buildall info dump is like : Apple => type2=>[2,3] type4=>[2,1] Mango => ...
0
votes
0answers
9 views

Flexslider issue: imgs increase in size after switching

View the page here I've installed FlexSlider by WooThemes as a simple way to have 3 rotating pictures. For some reason, when the image switches to the next one, the next image becomes huge ...
-1
votes
0answers
9 views

How to add mail merge result as a url parameter within the email

I need to add the results from a mail merge field to a link inside the same email that will contain the url parameters to carry over to auto-fill fields in a form on a website. I tried add the field ...
-1
votes
2answers
33 views

Storing API in local array

I'm trying to store data from an API into an array using javascript. Tried doing it like this: $.getJSON('http://search.twitter.com/search.json?q=Hamburg&rpp=5&lang=all', ...
0
votes
2answers
41 views

HTML input does not get Highlighted/Selected

We are developing ASP.Net application. We have used HTML Input control . But we are facing problem to select/highlight the value in control. On some pages My Html Input control on Div, User Control. ...
0
votes
1answer
45 views

How can I iterate through an Elements child nodes using Javascript?

I'm trying to iterate through a DOM elements children and display their attributes in my code: document.write("<table border='1'>"); var testcaseiterator = ...
0
votes
2answers
45 views

Choose option in select box by clicking URL

Sorry about the vague title - the behavior I'm trying to get is a little difficult to summarize. I am updating our company's website, and the first thing we changed was to create a contact form, ...
0
votes
2answers
56 views

Encrypt html code in source view

I am using an video embed code (Similar to youtube's embed code) and I would like to Encrypt or hash a part of the code (The Video id or filename of the video). It is important to me that a user that ...
0
votes
2answers
54 views

Validation With Java Script and printing

I have a form in HTML and that if the fields are left blank, the Javascript will print inside the fields error. Please can some one give me a piece of code that will validate the form and then will ...
0
votes
1answer
39 views

Not able to select popup box fields and options

jquery: $("#type_name").click(function(){ $("body").append('<div class="modalOverlay">'); $("#add_form").fadeIn(1000); $("#first_name").val(""); ...
1
vote
0answers
27 views

javaScript/jQuery History.pushState URL + Refresh Page

I’m developing a website based on this tutorial and have been having difficulty with the URLs and refreshing the page. index.php: <aside id="menu"> <div id="scroll"> ...
0
votes
3answers
56 views

String with whitespace in javascript

I have a String "Magic Word". I need to use it as value in html checkbox generated by javascript. in javascript var itemValue= "Magic task"; var opt = "<input type='checkbox' name='test' ...
2
votes
4answers
59 views

jQuery data() with multiple parameters?

I want to add data variables to an element before causing a specific behavior, but this may require adding more than one data parameter. How can I accomplish this? ...
0
votes
3answers
31 views

How is the iFrame with Header Preview Achieved?

I know this is a general question, but I can't get a true answer on Stackoverflow or searching google. How do I make a page with a fixed header for logo and links and an iFrame of a given URL. The ...
0
votes
1answer
34 views

How do I access XML Elements using Javascript?

I have an XML with testcases. Each testcase has a different number of teststeps. As I run through my tests, I set the status attribute of the teststep Eleemnt to passed or fails. Now I would like to ...
1
vote
3answers
53 views

Link a #div and URL

Hey guys is it possible to link a div and url? Basically I want 2 links in one . One link to target the #div and one to target the actual site url in the div. I am targeting a div but need the url ...
0
votes
2answers
57 views

change active state on div's by clicking a link

I'm currently having some issues with a Login-box. I'm using my own version with the logic behind a tutorial online. It all works fine right now. When I click my Login button, a JQuery trigger ...
2
votes
2answers
24 views

SVG Not Working in Firefox 18

It would be more accurate to say via firebug, i can see the values of the SVG elements changing - but nothing appears on the screen. Here is the snippet i'm working with: ...
2
votes
2answers
42 views

Load HTML with Ajax vs. load only data with Ajax and build the html with Javascript

I'm working on a project which needs to load via AJAX some HTML information on the page.But I'm not quite sure how to load that information. I don't know which method is better for me: 1) Load the ...
0
votes
1answer
7 views

Good practice for multilingual html SCORM content

This is more a "theoretical" question rather a technical one. I need to create SCORM e-learning content, pure HTML-CSS-Javascript without any server side technology and this content must be ...
-1
votes
2answers
38 views

In PHP, how to destroy session and close the window?

I want to close the tab as well as destroy the sessions in the php. I have this piece of code, but doesn't work well. <?php session_start(); session_destroy(); ?> <script ...
0
votes
3answers
53 views

Input type password text on IE 8 [duplicate]

I'm working on this website The problem I have is on the input of the password: When you click on it on IE9 and other browsers like Chrome and mozilla, the text changes so you can enter the ...
0
votes
3answers
70 views

JavaScript: how to build simple percentage increaser?

How to build increase value as percentage without progress bar. I have built an animator, but actually I need simple one which show value from 0% to 100% without progress bar or anything. Here is my ...
1
vote
1answer
70 views

Opening element on top of others

I have a grid of images and text. By default, only the image is showing. When the user clicks the image, it should expand over the others and show the text. Currently it's partly working. ...
-10
votes
0answers
59 views

I'm making an attendance sheet for employee [closed]

I have 1 department code field in this field getting value from combo box i.e department name,and have one more combo box of month that will see the value of department and will display the list ...
-2
votes
1answer
51 views

Jquery how to keep a div when you hover it? [closed]

I have two different divs, and when you hover one of them, the other one appears, and i want to keep it on the screen until you hover out this last, or you hover out the first div. I have tried this ...
0
votes
1answer
24 views

onChange event not working when change automated

I have an onChange event on one select box (usageDisplays), which populates the next select box based on the selected value of the first: <html:select name="usageDisplays" property="name" ...
1
vote
1answer
23 views

how to verify style attribute in Selenium IDE

I have the following code: <div class="ui-multiselect-menu ui-widget ui-widget-content ui-corner-all ui-multiselect-single" style="width: 192px; top: 172px; left: 299.9px; display: none;"> ...
0
votes
2answers
42 views

Bootstrap radio buttons do not check when collapsing an accordian

I've tried a lot of things to try and get this to work. All I want to do is "when checking a radio button the accordion content will close and open accordingly and the button will 'check'". I have got ...
1
vote
2answers
47 views

Replace an image wherever it is used - Javascript

I'm looking for a way to replace an image that could be used anywhere on a page. So if we have an example html page like this: <html> <head> </head> <body> ...
-2
votes
1answer
29 views

not working in IE. Working in FF, Chrome [closed]

I am creating website using JSF where I have below. <h:form prependId="false" enctype="multipart/form-data" id="addBODMeeting"> <h:inputText id="myDateHide" value="#{BODMeeting.myDateHide}" ...
0
votes
0answers
22 views

How to manage js file in a large web app project?

I used to write javascript snippet for websites. Now I am going to develop a web application ,which includes one or two html files and lots of js file. Is there any tutorials or blog post to explain ...
0
votes
0answers
30 views

How to replace a value of an attribute in JS function on run time?

I am working on my Java application that (besides other things) produces HTML. In this HTML I need to change a value of one attribute inside one JS function every time I run it. The process is like ...
0
votes
1answer
38 views

Jquery countdown timer that doesn't reset on page refresh

I need you help about this one. I am using Vassilis Dourdounis jquery plugin, and I have created countdown timer that hides some link on complete. But it restarts whenever the page is refreshed, and ...

1 2 3 4 5 1101