Hi,
I am using jquery with json. My client pages generate json, which I store on my server. The clients can then fetch the json back out later, parse, and show it.
Since my clients are generating the json, it may not be safe. I think jquery uses eval() internally. Is that true? Is there a way to use the native json parsers from the bro...
I am using Easy Slider 1.7 - jQuery plugin and have made many modifications. My slider contains 7 slides, numeric navigation and next and previous arrows. The only problem is the numeric navigation. When you are on slide 1 and click slide 5, for example, all the slides scroll by, one-by-one. I am having trouble modifying the code so that...
I am using the jQuery plugin Colorbox for some images on This page.
If you look at the main product image in the center, right below it are some little polaroid-looking thumbnails. If you click on one it pops up an image using Colorbox
If you make your browser window about 800px wide (the width of the page content) the popup will be ce...
I am in the process of developing a widget. The widget has three tabs that are implemented in the following way.
<div id="widget">
<ul id="tabs">
<li><a href="http...">One</a></li>
<li><a href="http...">Two</a></li>
<li><a href="http...">Three</a></li>
</ul>
<div id="tab_container">
<div i...
I have used the BeforeShowDays method to disable days on page load for my datepicker in the past.
What I would like now is to click on a day, and the day should become disabled (not clickable, as if I used the BeforeShowDays method on that day).
Is there a way to accomplish this?
...
Hey now!
I'm doing a project similar to Google Reader.
I'm using Infinite Scroll jQuery Plugin which works exactly as advertised when viewing the contents of the default selected category (in a scrollable div).
However when selecting another category (or folder in the case of Google Reader) and the contents of that category is loaded...
Given this page:
http://jqueryui.com/demos/datepicker/#min-max
And viewing its source:
http://jqueryui.com/themeroller/css/parseTheme.css.php
I can change the following line (using Chrome's inspect element feature) and see those changes reflected:
.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(O...
Using a jQuery dialog, on clicking OK I call $.post( "save.asp", { id: 1, value: "abcxyz" } ); to pass the values to my ASP classic file that will update the database. I don't need a return value (unless it fails).
I'm a relative noob to jQuery, so I'm assuming I'm using JSON to pass the values to the ASP file. I just don't know what to...
Hi all,
When I was doing some JQuery and PHP,
I noticed the If-else patterns were treated differently and varied from one language to another.
Say I got a simple input text field in a HTML
and I was using some Ifs and Elses to check the value input into the text field.
Text: <input type="text" name="testing"/>
In JQuery, I got some...
Hi all,
Basically there are two tables: Companies and visitors. Currently it's possible to drag visitors to companies. Works great. As soon as the drop function occurs, there are two $.post's. The first one saves the drag to the database. The second one updates the visitors, because the information constantly changes. The problem, howev...
Bikram Website
If you view this page in the latest version of chrome you will notice when you click on an instructors name the scroll bar is black when fading in. It is not a webkit issue as safari is fine. Anybody know why chrome does it?
...
Google recently added backgrounds to it's home page .. Like it or hate it, it's got the ability to resize the background image while keeping the same proportions as the browser window resizes...
Anyone know of any jQuery to do that?
...
I am trying to show a div when the cursor hovers over and image and hide the div when It is not hovered over the image how is this done?? So far I have a basic show:
<script type="text/javascript">
$(document).ready(function(){
$(".plans").hover(function()
{
$("#planssubnav").show("slow");
}
);
});
</script>
...
I have an array of data in php and I need to display this data in a HTML table. Here is what an example data set looks like.
Array(
Array
(
[comparisonFeatureId] => 1182
[comparisonFeatureType] => Category
[comparisonValues] => Array
(
[0...
So I'm working on a Greasemonkey UserScript for Clients From Hell http://clientsfromhell.net/ and I'm stuck on something.
The script allows a user to navigate through posts on the page using the J and K keys. I'm trying to mimic the site http://9gag.com/ navigation. There are 10 posts on the page and each of them have the class post so ...
I have a script which inserts "popup" elements into the DOM. It sets their top and left css properties relative to mouse coordinates on a click event. It works great except that the height of these "popup" elements are variable and some of them extend beyond the viewable area of the browser window. I would like to avoid this.
Here's w...
I'm having an issue with IE7/8 only on a development site: when
closing the Fancybox, there is a major delay, sometimes about ten
seconds or so, sometimes much longer (like a minute).
Some things that might be relevant:
• Using fancybox 1.3.1
• Works perfectly on all other browsers (FF, Safari, Opera, Chrome)
• The loaded iframe conta...
I'm relative new to jQuery and I've been asked to create a hide/show function with a select tag. The function pretty much would be when you click on one of the options in the select tag it will open a div associate with the div of course. To be honest I have no idea how approach this function. I need help urgently, I have already tried m...
I'm basically looking for the client-side equivalent of Django's ModelForm: I want to be able to specify the general schema of my data (what the fields are, which ones are required, what kinds of fields to use, etc.), and I want to be able to dynamically generate the form, itself, fill it with any initial data, validate it, and extract a...
okay, so i have an asp.net (C#) application and i want to add a list of file and folders on the page, so i figured i should use JQuery fileTree (http://abeautifulsite.net/2008/03/jquery-file-tree/#download)
but now i am totally unable to display the file list.
I initialise the page this way:
Site.Master:
<link rel="stylesheet" type=...