I have a tab container using <li> as the tab definition (common practice).
The <li> has a style associated with it in the style.css file. This has a background color and a background image.
Now, each container below the tabs that contain <li> in the content will have the style sheet definition (background image and color).
How do I ov...
(aggregated from another question)
Jquery 1.3.2 test code, run in FF3:
<input type="hidden" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd').val() );
console.log( $('#ixd') );
console.log( $("input[name='ixd']") );
console.log( $("input:hidden") );
console.log( $("input[name='ixd'][type='hidden']") );
console.lo...
Has anyone had any experience with a jQuery-based layout manager? I know of only one (JX) but it's somewhat bloated for my needs. Any thoughts?
...
I'm using ASP.NET MVC and Microsoft AJAX to create an AJAX form using this following syntax:
using (Ajax.BeginForm()) { ... }
This works fine if the user clicks a submit button. However, I also need to programmatically submit the form. The problem is, the way MS AJAX works (for reasons that escape me) is that it puts the submit acti...
I am trying to select elements that do not match a given attribute id. Based on the following simplified example, why does $("td[groupId != 1]") return elements that do not even have the groupId attribute? Is there another way to select elements that have a groupId where the value is not 1?
<table border="1">
<tr>
<td>Group 1</td>
<td...
Hello jQuery Masters,
In this example I am selecting a bunch of 'A's within 'LI's (it doesn't really matter what I am selecting, just know I am returning a group of 'A' tags that all have the same "attribute structure").
I was wondering how I would go about returning a comma delimited list (or object/collection) of "attribute values". ...
Hi Guys,
Ive got a problem with IE which is fine in FF, Chrome etc...
I have for example a 2 column layout of which for debugging ive emptied the left hand side one. The right hand side has a long list of results in a table with sortable options above it.
In this sortable options section is a select box which has options dynamically g...
I am setting up validation following the tutorial at link text
My form action script is as follows:
<form method="POST" action="formproc_to_paypal.php" id="example"
target="_self" onsubmit="CalcAmount (this); ReadForm(this);" name="example">
When I remove/change the action line to "" (as the tutorial shows) the validation works ...
Hi there,
I am trying to find some sort of gui or batch utility where i can YUI compress a JS file i have.. I have a utility that sort of consolidates all my js into 1 single js .. and works great but i need to compress this file..
I was using something similar before to compress but it failed on european character i.e. character with ...
I am trying to use jQuery to break right ascension and declination data into their constituents (hours, minutes, and seconds) and (degrees, arc-minutes, and arc-seconds), respectively from a string and store them in variables as numbers. For example:
$dec = "-35:48:00" -> $dec_d = -35, $dec_m = 48, $dec_s = 00
Actually, the data resi...
I have something like this:
<html>
<body>
<iframe id="someFrame"></iframe>
</body>
</html>
And I would like to use jQuery to write elements such that the full equivalent HTML would be like this:
<html>
<body>
<iframe id="someFrame">
<!-- inside the iframe's content -->
<!-- <html><body> -->
<div>A</d...
I display a bunch of posts from users on a page. I have the main parent div with the class name 'posts' and each post is outputted in a div with class name 'row' inside of it. So there's a whole lot of div.row's inside the div.posts. Each look like this.
<div class="row clearfix">
<div class="left-column">
<img src="..." title="" />
...
How can I use javascript/jQuery/etc to detect if Flash is installed and if it isn't, display a div that contains information informing the user that they need to install flash?
...
if i have a table like this
<table width="500" border="0" style="border:0px;" id="options">
<tr>
<td>Designers</td>
<td><input type="checkbox">
</tr>
</table>
how would i hide the row with designers?
i was guess it would look something like this
$(document).ready(function() {
if( $('table #options tr td').html('Designers') {
$(...
I'm curious to know people's preferences...
I've recently gone head-first into jQuery and I am loving it. However, I'm finding that I'm replacing a lot of (somewhat trivial) backend (tech: ASP.NET) functions with tiny jQuery functions. For instance, rather than assign a navigation button as a back-end control and change its class when i...
I'd like to use jQuery to grab all of the css file references from my page. Any suggestions how i could construct a query to grab them all?
As an example, stackoverflow has a head section that looks like this:
<head>
<title>Ask a Question - Stack Overflow</title>
<link rel="stylesheet" href="/content/all.css?v=3647">
...
Possible Duplicate:
Best ways to display notifications with jQuery
I'm looking for nice looking error/valid/info/.. message boxes. Any ideas
...
I am trying to make a webpage that uses a moving div that slowly moves to the left. There is also another div that moves on top of it to the right that gives a 3D effect (but that's beside the point).
What I am trying to do right now has made a 7000px wide div that slowly moves to the left (animating the "right" property of CSS with jQu...
Please someone help me out with this:
I have the gallery html page loaded and getting called in correctly to my mainContent div in my page. if you go here:
http://dageniusmarketer.com/DigitalWonderland/index-jquery.html
click on portfolio, you will see that the gallery loads, but, the image thumbnails and display is way off. its suppo...
Background: This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet.
Suppose you have an arbitrary JSON structure like the following:
{
'str_title':'My Employee List'
,'str_lastmod': '2009-June-15'
,'arr_list':[
...