We have a large classic ASP application that we are rewriting into ASP.NET. We won't be finished with the rewrite, testing, etc until the end of next year. We're getting a lot of pressure to spruce up the interface of the classic ASP application in the meantime.
Is it possible to use jQuery with classic ASP?
...
Hi there,
I have a jquery animation .. actually its 2 .. fadein and then move with animation..
Problem is that it fades In completely FIRST and then ANIMATES (moves position) ...
What i am trying to do is start fadein and don't wait for it to finish (which appears to be happening at the moment) .. and start the animate..
hence both...
Hi Guys,
Here's the story. I've got an unordered list inside a div on my page.
The code:
<div id="move-me">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
The above code is positioned on the left of the page, now what I want to do is, destroy the div and ul elements and be only left ...
Hi ... can't seem to get the ajaxSend and Stop to work... These are global variables no? .. but i should be able to use like this... but i never get an alert??
I wanted to use these events to display a ajax animation.. although in my code i wish to position the ajax animation depending what i am doing an what element it is..
...
Hi guys,
I'm currently using the title attribute of my 'a' tag to show and hide images that correspond with this tag.
However, when you hover on the 'a' there is the annoying title text that pops up.
Can I disable this pop-up text with out completely disabling the title attribute? ANy help is great!
Cheers,
DanC
-----edit------
he...
I have a page with several gridviews. For usability, I have put these gridviews into a series of jquery tabs. Tabs works by creating anchor links that go to containers with certain ids, so after clicking on a given tab, the url might change from
host.com/page.aspx
to
host.com/page.aspx#tab2
The issue is that if any elements inside th...
<html>
<head>
<style type="text/css">
div#bg1 {
height: 159px;
width: 800px;
margin-left: auto;
margin-right: auto;
background-image: url('images/bg1.jpg');
background-repeat: no-repeat;
background-position:center center;
position...
I've a form on my ASP.NET web page. There is submit button also. I've some validation logic attached to client-side click event of a button. I'd like to submit this form from my jQuery validation logic, how to achieve this?
...
I have a multi page form which uses multiple tables in mysql for the entered values. One of the pages has a form which needs to have the option of enabling the user to click a + to add an extra line if they want to include extra information. There can be any number of lines added.
When the user clicks the +, jquery and php inserts the c...
I want to use an image of a calendar to show/hide the jquery datepicker. Based on the documentation it looks like I need to set buttonImage and buttonImageOnly, which I have. the date picker is working but it is always visible. here is my code:
<script type="text/javascript">
$(document).ready(function(){
$("#datepicker").datepicker({
...
I have some code like this to take over the space bar's function:
$(document).keypress(function (e) {
e.preventDefault();
if (e.which == 32) {
// func
}
});
Unfortunately this destroys all key's defaults.
This:
$(document).keypress(function (e) {
if (e.which == 32) {
e.preventDefault();
// func
}
}...
I am writing a backend/admin area for a website. The users want the ability to modify their menu's on the website.
These menus can be heirachical no more than 3 levels deep.
Do you allow users to do this?
How do you store the heirarchy?
How do you programmatically display the menu?
How do you make it easy for users to create heirar...
Hi,
I'm new to jQuery. I've got a dialog with several input boxes in it. I want the user to be able to hit a button and have the values posted back to the server - idealy to be picked up in a server event. What are the ways to achieve this?
Many thanks.
...
Hi,
By default Html.ValidationSummary() produces HTML like this:
<span class="validation-summary-errors">There were some errors...</span>
<ul class="validation-summary-errors">
<li>First Name too long</li>
<li>Invalid Email Address</li>
</ul>
I'd like to select the entire validation summary and add a bounding box around it via ...
I'm working with an xml node of the following structure:
<CF>
<T>
<TX>title</TX>
<em>15:2:</em>
</T>
<KW>
<TX>SOMETHING ELSE</TX>
</KW>
<!-- OTHER TAGS, SOME OF WHICH HAVE A <TX> CHILD -->
</CF>
Things work more or less as I expect in firefox, but I'm getting weird behavior in IE8. For example, the following gives me a jque...
I've been trying to use jquery to trigger a click.
I've discovered that triggered clicks, like this: $(button).trigger('click'); do not follow hrefs. I've been trying to make an ajax submission by triggering the submit button, but no go.
I know I can submit directly. But is there any way of triggering the button? Thanks.
...
hi guys,
i have a jquery function that when clicked produces a set timeout on making a div visible.
however, if another option is selected during the settimeout length, i would like to know how to destroy this function and stoop anything else in it happening.
my current code is:
$(document).ready(function(){
$('li#contact').click(fu...
I have a page with two button. When I press '5' I want that button1 to be clicked and on pressing '6' Button 2 to be clicked. Is it possible using jQuery?
Can I also handle Ctrl+5 in jQuery?
...
It seems that this should be simple, but I'm having trouble figuring out how to construct a selector that will return only elements that are a direct child of a root node.
If, for example, I have a reference to a div (myDiv), and I want to select only images that are direct children of that div, the following doesn't work:
jQuery("div ...
Is there an event in JQuery, Javascript, or the DOM in general that I can subscribe to that will notify me when an element become visible or invisible (display:none)?
...