Tagged Questions
0
votes
0answers
18 views
AJAX request loading resources again
I'm coding a page for an online store so there are quite a few images (thumbnail and fullsize for each product).
I'm using a preloader for all the page resources (images and fonts), however every ...
0
votes
1answer
19 views
html / javascript tab controllers not working
I am currently finalising a simple website for a project I'm working on. I have two tab controls. One on the right of the page, and one on the left. Both have 3 tabs that when clicked display ...
0
votes
6answers
40 views
Jquery click function doesn't work after ajax call?
The Jquery click function works fine here
<div id="LangTable"><a class="deletelanguage">delete</a></div>
$('.deletelanguage').click(function(){
alert("success");
});
...
0
votes
1answer
19 views
JQuery methods wont work with MOTW
I have 2 html pages. One of the page say page-2 is using some JQuery methods, because of which I am seeing Internet Explorer Information bar with message “To help protect your security, Internet ...
0
votes
0answers
38 views
JQuery is not working on different frame
I am using following code. I have created two frames using css. On clicking row of frame1, I am displaying some details in frame2. The details contains a list with expand/collapse feature. Same list i ...
-1
votes
3answers
51 views
Get a 10x10 numeric array from html form [on hold]
Right now I have a php script for a battleship game that accepts a 10x10 array of single characters through json.
$gameId = $_POST['gameId']; // int
$playerId = $_POST['playerId']; //int
...
0
votes
1answer
29 views
Inquiry: How to Pass My JSON object from my first script to the second one?
I have two javascript I have mostly finished writing except for one part. I am trying to figure out how to pass the JSON response from the servlet to a second javascript file.
I have an html that ...
1
vote
1answer
23 views
Parallel form submit and ajax call
I have a web page that invokes long request on the server. The request generates an excel file and stream it back to the client when it is ready.
The request is invoked by creating form element using ...
0
votes
1answer
40 views
return data set has / after every html character
I have got data from Ajax call. In server side I encode string to JSON and send data.
But I get data as follows
"
General abc\/def<\/h3>
dsaa<\/td> 3<\/table><\/tbody>
...
1
vote
1answer
12 views
Jquery Html Form Ajax With Spring 405 Method Not allowed
I have deployed my Spring project in Tomcat and startr the tomcat. I wrote one html page to call the spring MVC using ajax.
It says 405 Method Not Allowed.
I am wondering if i run the same url in ...
0
votes
1answer
92 views
JQuery .submit() a FORM doesn't work
I'm increasing my system by entering the functionality of loading a page inside a div dynamically, in the other words, the central area of the page is updated. For this I am using the JQuery. But even ...
1
vote
1answer
36 views
JQuery redirect doesn't work really good
I have a the following problem. I have a JQeury Script, which load With Ajax every Second a Page. When the response is "go" he should redirect to a other page. This works only, when he directly gets ...
0
votes
1answer
34 views
KEYUP Event in JQUERY for ASP.net Textbox
How to make KEYUP event in JQuery for a textbox on ASP.net webpage ? (not KEY PRESS event)
1
vote
1answer
43 views
load <options> into <select> when <select> is clicked
Is there no way to populate a <select> list when the <select> element is clicked on?
$(document).ready(function(){
$("body").on("click", "select", function(){
ajax(); //should ...
1
vote
1answer
43 views
How do I submit a form without refreshing the current page?
I have a fairly basic email form
<form name="contactform" method="post" action="send_email.php" id="email_form">
<div class="ContactHeaders">Name</div>
<input type="text" ...