Tagged Questions
2
votes
2answers
22 views
Handling json data using jQuery sent by using Newtonsoft.Json
I have tried searching all possible matches of my problem and also have tried a couple of solutions but unfortunately none worked
My backend code:
Person p;
foreach(DataRow dr in dt.Rows)
...
0
votes
0answers
18 views
I cannot call the value of JQuery generated cookie in my controller
I have created a cookie that saves the last altered state of a checkbox. The cookie works, I have proven that by passing the value of said cookie in an alert box. the cookie also saves the state of ...
0
votes
3answers
20 views
Multiple steps user registration - relation between php session and javascript variables
I am doing in PHP/MySQL a user registration in multiple steps. Everything is on the same page. I have declared functions for each of the step and hold a variable of the current step (or next if ...
-3
votes
2answers
28 views
how to count json array in json array
i'm stuck in.. jsfiddle.., how to count it
{
"data": [
{
"id": "100006390186237",
"name": "Kobpong Srivijan"
},
{
"id": "100003504250232",
...
0
votes
1answer
43 views
How to get the old and user defined Name for the checked values in mvc asp.net
HI all i have assigned with some task, in which bellow is my Filed model and i have two properties like "FieldName " and "UserDefinedFieldName " initially UserDefinedFieldName is null and fieldname ...
0
votes
0answers
14 views
jQuery countdown timer (jcountdown1.3 countdown - webmuse) is not counting down
Here is my code:
var now = new Date();
var newDateObj = new Date(now.getTime() + 30 * 60 * 1000)
$("#countdowntimer").countdown({
date: newDateObj.toGMTString(),
htmlTemplate: "%{m}:%{s}",
...
1
vote
0answers
31 views
Jquery button click to send AJAX request with Flask and Python
I am trying to make a web application that accepts button clicks. The button clicked then sends a specific device, and operation code to the python application which then calls a irsend command using ...
0
votes
0answers
15 views
Handle edit option against the same field appearing multiple times in a JSP page
Currently my page displays the total no of registered users against a field Total Registration.
Im showing the following image to display the data initially enter image description here
Now when ...
0
votes
0answers
15 views
JQuery download progress in Opera 12
First of all see a link on jsfiddle.
$.ajax({
url: 'http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/22.0/win32/rm/Firefox%20Setup%2022.0.exe',
type: "GET",
data: {},
...
0
votes
1answer
25 views
Jquery Success Funtion to update the Table
I'm working with MVC3.
Following is my Controller:
public ActionResult TRUnutilizedOwnership(string strGeo, string strVertical, int ? intMonth, int ? intFlag) {
if (strVertical == ...
0
votes
1answer
40 views
How to use ajax json data by using jquery in mvc 4?
How to use $.post or $.getJSON to get json from mvc controlller but not working below? Would you like help me?
var controlRole = function () {
var _url = 'IsStudent/';
...
0
votes
1answer
46 views
My Javascript timer counter is not worked with bootstrap, please tell me how to resolve it?
I am very newbie for bootstrap. Now I am doing one online exam project. So I need the time counter for that project. I am using the bootstrap for best responsive layout, and I am using this site's ...
1
vote
0answers
27 views
Jquery delegate not working when setting variable
I am using ajax loading for page navigation and am using delegate for the various click events required for each function etc
The problem I am having is activating a slideshow on the home page due to ...
1
vote
1answer
45 views
javascript variable scope - how can i work around this?
I have an input field, where a user can enter an INPUTVALUE, this INPUTVALUE gets checked for correctness against a reg-ex, then sent off to a php file, which will do calculations with it, and return ...
1
vote
0answers
25 views
Timer stops when I focus out of the window
I have a timer set on my application using html 5 and jquery. Now when I move on to different tab or I minimize my window, the timer for that few seconds stops. I do not want this. And again as I open ...