0
votes
3answers
39 views
How to REALLY limit the available character for an input field using jQuery?
Hi,
I just started adding JS-validation to a signup form and I want the username input field in a Twitter-style (using jQuery). That means that the input is limited to certain characters and other …
1
vote
4answers
43 views
$.ajax not working properly on IE6
Basically, I have something like this:
$.ajax({
type: "GET",
url: "my_url",
cache: true,
success: function(data) {
/* code here */
},
…
1
vote
7answers
40 views
how to get css of a clicked div using jquery?
Can anybody know how to get border-color of a div using jquery.
Jquery:
$("#divcolor").click(function (){
alert("dsf");
var divcolor = $(this).css("border-color");
alert(divcolor);
});
Html:
…
0
votes
4answers
80 views
$(’#<%= txtFirstName.ClientID%>’). What do $ and # do in this code?
$('#<%= txtFirstName.ClientID%>').show();
Trying to send ClientId to external Javascript file using server tags
as a parameter
<input type="text" ID="txtFirstName" runat="server" …
2
votes
4answers
22 views
calling iframe function
Is there a way to call a javacript function that is inside an IFrame from the parent ?
0
votes
0answers
11 views
Horizontal Reorderlist in Asp.Net/Javascript
Hello,
I want a horizontal reorderlist similar to ajaxcontrol toolkit reorderlist, issue with this list is that it shows only vertical data but i need horizontal data like in datalist repeated …
0
votes
4answers
63 views
accessing variable modifications made from within an inline function in javascript
Hello all,
I'm trying to pass local variables to an inline function in javascript and have that (inline) function manipulate those variables, then be able to access the changed variable values in …
1
vote
5answers
48 views
How to disable user’s input while loading page with jquery?
I have a heavy-jquerized page with some links, various user inputs and such.
I use jquery, with actions defined in a
$(document).ready( function() {
....
} );
block.
But while the page is …
1
vote
3answers
40 views
Coloring lines inside textarea
Is there any way to make textarea display lines in colors? What I am trying to achieve is every second line colored, i.e. white,grey,white,grey,white,grey... for better readability. Users are supposed …
3
votes
2answers
65 views
Document.domain and <iframe>s breaks the “Back” button in Internet Explorer
This is a very urgent problem and I'd be forever indebted to anyone who can lend some insight.
I'm going to be deploying a widget (called the "ISM") to a third-party site. That site uses the …
1
vote
2answers
53 views
how to set the offset in javascript
How can set the offset using JavaScript ?
0
votes
2answers
19 views
Active AJAX requests
Prototype stores the number of active AJAX requests in Ajax.activeRequestCount. Is there something similar in jQuery/Mootools etc or something that can be used from XMLHttpRequest?. Ideally I need a …
0
votes
2answers
41 views
jQuery cluetip(’destroy’) does not destroy/remove cluetip?
Hi all:
I'm trying to make sense of how cluetip actually works. I have a dummy DOM structure which I did some alerts on to check if the cluetip has been removed after the cluetip('destroy') was …
0
votes
3answers
39 views
Adding an input name upon creation of new table row [jQuery]
I have an order form I had put together for a client, you can view it here.
As you can see it creates a new row with 5 input fields (per row). Here's my problem, I have this form outputting the form …
0
votes
1answer
21 views
Eliminate Duplicate Entries
I am using the following javascript to dynamically load the contents of an external page within the parent page. The external page is within the same domain as the parent page and queries a database …
