Tagged Questions

2
votes
2answers
149 views

Removing cookies with the same name but different paths

I need to delete clientside cookies with the same name but with different paths. What is the best way to do this in javascript.
2
votes
1answer
214 views

Html5 says that values are undefined

This is in a chrome extension and lets say I have this code: var DB = openDatabase('CMPDB', '1.0', 'Database for CMP', 4 * 1024 * 1024); LoadFromDB(); function LoadFromDB() { ...
2
votes
6answers
68 views

What's wrong in my JavaScript code?

I can't figure out what's wrong. var CarObj = function(passengers, maxLoad, wheels, doors, maxSpeed) { this.passengers = passengers; this.maxLoad = maxLoad; this.wheels = wheels; ...
2
votes
4answers
442 views

how can i create a file on client side by JavaScript?

i need to create a temp file to store user settings on the client side .it it possible to create a simple log file by JavaScript ?
1
vote
5answers
55 views

How can you use php in a javascript function

<html> <?php $num = 1; echo $num; ?> <input type="button" name="lol" value="Click to increment" onclick="Inc()" /> ...
1
vote
2answers
35 views

triggering a portion of a php script through a user action without going into a new form?

I just started learning PHP and was wondering if there is a way to trigger a portion (a function really) of a php script when a user clicks on a link/button without redirecting the user to a new php ...
1
vote
2answers
131 views

which has better and smooth API for DOM manipulation? Chrome or firefox?

I am developing a web application which will collect, store and display the user feedback of google search results. For the user interface in client side, I need to hack the google's search page on ...
0
votes
2answers
64 views

how to call javascript function from client side on anchor click

I have javascript function sample('textValue') and have to call at server side on anchor click. I tried below code string text="xyz"; anchor.Attributes.Add("onclick","javascript:sample('"+text+"'); ...
0
votes
2answers
50 views

url callback function not working

How can I use the callback function properly cause it's not working. I want to retrieve my json values from the server to the client side. For starters I tried this to see if its working. sample ...
0
votes
1answer
251 views

ASP.Net RadioButtonList in a Group with JQuery

I've got some radiobuttons in my webform, they are all part of the same group <asp:RadioButton runat="server" ID="rbMonFriWkends" GroupName="HoursWkSelect" CssClass="ChbxToggler ...
0
votes
2answers
290 views

Image src (via javascript) inconsistency between chrome/firefox

Heya, so I'm running into a weird bug/edgecase. Check out the following code: var i = new Image(); i.src = ...
0
votes
2answers
43 views

Discussion - Allowing / blocking user access to pages / Client Side Validation (Client Side Only!) - Javascript / Jquery

TLDR Using plain HTML / Javascript (Client Side) I want to prevent viewing of certain pages. The user will have to type a username and password and depending on that they get access to different ...
0
votes
2answers
602 views

Client Side javascript call from ASP control throws “Too many characters in character literal” error!

I have a javascript to enable text boxes when called, I want to trigger this code when a user picks value "Custom" from a dropdownlist, so that I can display/Hide these new textboxes. ...
0
votes
2answers
1k views

Asp.Net Rating Control

I can't get the ASP.NET Rating control's selected value(Current Value) in javascript. I am using Rating control in datagrid and do you know how I can get the CurrentValue of ASP.NET Rating in ...