Hi, on my master page, I have referenced jquery file. I am doing simple hover function. When mouse hover, I change the css and when hover out, change the css back to originial. Nothing fancy. but my page throws jquery error when I run in IIS6 on server 2003. When I run on IIS5.1 on local xp machine, it works perfectly fine. Any idea? I ...
I am new to Jquery but my task is to create a Slider in Jquery, which will have a range as Current Date to (Last 3 Months Date).
Slider ---------------------------------------------------------------------
(Below is Just a Reference, the Slider should have a callout box or an area to show the Current Date which is selected)
1---------...
I'm new a jQuery. I have gotten validate to work with my form (MVC 1.0 / C#) with this:
<script type="text/javascript">
if (document.forms.length > 0) { document.forms[0].id = "PageForm"; document.forms[0].name = "PageForm"; }
$(document).ready(function() {
$("#PageForm").validate({
rules: {
...
i'm trying to validate an html page using jquery, but nothing happens. it's a simple page, yet the textboxes aren't validated.
this is the code:
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="~/jquery.js/"></script>
<script type="text/javascript" src="~/jquery-validate/jquery.validate.j...
Your typical "It doesn't work" freak out going on over here. Any direction would help.
I have a login control on my master page and I'm trying to only display it using jquery fancybox and then redirect the user once they are logged in.
But any buttons or controls that should do "something" when pressed when I put inside the fancy box a...
I have a jQuery array acting on each control having corresponding class:
function Foobar() {
$('.foo').each(function() {
// do something with $(this)
}
}
I can access client-side controls like <input class="foo"> and server-side controls like <asp:TextBox CassClass="foo">
But setting CssClass for asp:RadioButton doesn't ma...
Hi,
I'm using jquery and tablesorter plugin to sort a table in a php-page, which works flawless.
Further I have this form in it:
<form name="newrs" id="newrs" action="edit.php" enctype="multipart/form-data" method="POST" onSubmit="">
<input class="btn" id="bbtnNew" name="button" type="submit" value="New Recordset" />
</form>
But si...
Starting with a simple list:
<ul>
<li>Item 1</li>
<li style="display: none;">Item 2</li>
<li>Item 3</li>
</ul>
I know that I can subtract the hidden elements from the list total
$('ul li').size() - $('ul li:hidden').size()
But I thought there might be a more elegant way to achieve this with jquery:
$('ul li:hidden:not'...
I'm attempting to use the jQuery jFeed plugin for parsing an Atom, GeoRSS feed and I'm running into issues extracting the information I need. For example, I need to extract the summary element and I would like to render the contents in a div on my HTML page. Additionally, I'd like to extract the contents from the georss:point elements an...
I am using the jQuery plugin from the jQuery build of TinyMCE.
This simplified code initializes the editor:
$('textarea.tinymce').tinymce({
script_url : '../js/libraries/tiny_mce/tiny_mce.js'
});
This loads tiny_mce.js via AJAX. I have code that I want to run once this file is loaded.
I essentially want to specify a callback func...
I have an application that displays images from network cameras. The application will show multiple images on a single page. Each image container has a button on it that causes jQuery to scale that image up to fill a 64x480 div vs much smaller when multiple images are present.
I change the src in the image with jquery as you'd expect:...
I'm new to jQuery, and I'm trying to cause another identical dropdown menu to appear each time the user presses a button. I thought this would work, where #append is the button id and #foo is the dropdown id:
<script type="text/javascript">
$(document).ready(function(){
$("#append").click(function(){
$("#foo").append($("#foo"));
});
})...
Is there any jQuery (or standalone) plugin that would allow be to build an Interactive US map just like this: http://bit.ly/9PSiDB
Many thanks
...
The page in question is right here: http://s289116086.onlinehome.us/lawjournaltv/index.php
I'm 90% of the way there, I'm just assuming there's an error with my syntax. Focus on the blue callout area with "Workers' Compensation" as the title:
Basically, I've created a little slideshow there with the controls at the top and when you cli...
I already have pdf links set up. I am just looking to prepend Google's syntax in front of my current href using jQuery. i know the following doesn't work, but I feel I am close…?
jQuery(document).ready(function() {
jQuery("a[href$=.pdf]").attr("href", "http://docs.google.com/viewer?url=" + current.href);
});
Can anyway help, please?
...
Ok, I have an html page that is loaded into another html page via PHP (ok so its a PHP page, whatever). The page that is loaded is a list of hyperlinks. I need to change the href attribute to make the hyperlinks relative to the location of the stored images they refer too. When i load the page containing the hyperlinks the links are rela...
What happens is that I'm able to add and delete records from form using jQuery and PHP scripts to MYSQL database, but I am not able to update data which was retrieved from the database. The file structure is as follows:
index.php is a file with jQuery functions where it displays form for adding new data to MYSQL using save.php file and...
Hi,
I would like to cycle through four li elements that all contain tags, setting the appropriate class to "active" and remove the "active" class. I'm having a bit of trouble figuring out how to achieve this via jQuery.
HTML:
<ul class="liveMenu">
<li id="leftScroll"></li>
<li id="liveButton_1"><a class="buttons" href="#featured_...
I'm trying to use jquery to loop through a block of forms that contain numeric data and add it all up to be displayed in a form with id grand. I have the ability to dynamically add new forms, so the number of forms I'm looping through will change. Here's my jquery code I wrote that isn't working for whatever reason:
$('#table').delegate...
I select some text on the html page(opened in firefox) using mouse,and using javascript functions, i create/get the rangeobject corresponding to the selected text.
userSelection =window.getSelection();
var rangeObject = getRangeObject(userSelection);
Now i want to highlight all the text which comes under the rangeobject.I am doing...