Hi,
I'm new to jQuery and have been following the tutorial here for a Panel Slide.
http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/all-comments/#comments
So far so good.
Though I require a number of panel slides. The page is going to look very similar to this
woothemes.com/themes/
When you click an image a 100...
So I have captured the ID of an image in a jquery variable like so:
$("#tag img").click(function(e) {
var element = $(this).attr("id");
How do I then parse the var element?
I would like to put it in an if statement like this:
if ( $(element *= 'square' ) {
$('#tag #view_name').text("Tag with a Square");
}
elseif ($(el...
Yes, otherwise I just starting make my wrapper in CSS so it covers 770px or 990 px etc..
It should be like scaling after window size/resolution.
Are their any way to make it adjustable for every single computer using Javascript/jQuery?
...
I have implemented JQuery Ajax for dynamic content retrieval for my WordPress blog. But now I have a problem with DISQUS plugin, it just do not load anymore, because page is not reloading. For other small scripts I have used LiveQuery plugin for JQuery and it worked out well, but DISQUS is too complicated for me. Maybe someone could give...
I have a paragraph, which I would like to edit using javascript prompt function.
All work ok while I didn't enter < or >. They looks good in html, but when I would like to edit them again, I see ugly > and <
The issues can be easy reproduced via following scenario:
press Edit-button,
Enter string <<<>>>.
press Edit-button again....
just for fun...
Is it possible to have a .js file that loads jquery from a remote site and then utalizes jquery inside the .js file...
so say site: www.sitea.com... doesn't use jquery. but they find this awesome script on site b that they want to use in their page... so they do a:
<script src="http://siteb.com/cool-script-location/c...
Hey All,
Not sure what's going on but the Jquery.js is dying on me with "d is not null". This came out of no where. I can't seem to figure out how to fix it it.
Screenshot of firebug:
From this drupal link link Michelle (3rd comment) claims this is Collapsible forum containers issue? (Which as far as I know I am not using?) but it...
I was using the .live function
$('a.remove_item').live('click',function(e)
but I needed to change this to one() to prevent multiple clicks, however when I inject one of these elements after the page has loaded the one() listener does not fire.
How can I get one() to behave like live()?
Thank you!
...
Hi I have created a user message page with this plugin.
The grid will show the user inbox and the user outbox(sent) messages. here's a little code:
jQuery(document).ready(function() {
//...some stuff
currentURL = function() {
return 'json_member_mail.php?task='+ currentBox;
//where cur...
On stackoverflow, when you click "StackExchange" in the top left, it opens a popup like dialog. Anyone know what they used to create that or what type of jQuery plugin makes such a UI?
...
What's the best option to to a model/overlay type form (to create a post for example) using rails and jquery?
I have tried jquery ui dialog/jquery tools overlay etc, but there does not seem to be a good solution to handle..
1 - Validation errors, i.e. present the form with appropriate inline/flash validation errors
2 - the only way t...
I am making a javascript code editor online, and right now I'm doing the line count on the left side of the editor. I can't figure out how to make it so when a new line is created, it adds +1 to the line count, so each new line it it will have the line number on the left. Anyone know a good way to do this?
...
So I'm turning an "edit" form into an ajaxForm with the following:
$('#reviewForm').ajaxForm({
success: function (response) {
$('#bookReview').html(response);
}
});
This returns the same form, that can be edited again, if necessary. The second form submission, however, no longer has the ajaxForm() attached to it, whic...
I have a form, where a user selects a chart from the Google Graph API. These variables are submitted to the URL, via the GET method (this has to happen, I can't do POST).
<form name="chart" method="get" >
<select name="chartType"
<option name="oMeter"
value="http:\/\/chart.apis.google.com\/chart?chxl=0:|0|50|100&chxt=y...
Hey,
I have a menu made with HTML, using a simple UL with lots of LIs. Each item contains a link with class "primary". When a list item (anywhere in a list item - not just the text) is clicked, jquery checks to see if the item contains a link with class "primary", and if so it loads the specified page into a hidden div (which I refer to...
Every once in a while, some feature on a site I use will be broken/have annoying behavior that I want to change with a greasemonkey script. When I try to debug the site using firebug to find out what code is called from an event by using "Break On Next", firebug just breaks immediately to show some jQuery code that is always running. A...
I see that in different plugins and codes, but I don't understand what does that function... In the jQuery api isn't referenced!
...
In the HEAD of my document I load jQuery.js and also the blockUI jQuery plugin.
In the PHP I then use regular AJAX to load other PHP content into DIVs. In the original PHP jQuery and blockUI plugin work just fine, but in any of the ajax-loaded divs jQuery and blockUI both do absolutely nothing. No console error, no warning - nothing.
I...
I want to lazy-load the results of my Youtube API search, so that as the user scrolls down, Youtube players are being added to the page. It seems that the lazy loading plugins are focused on images, but what I will be loading is just HTML, because I'm using iFrames to load the Youtube players (as per the new Youtube embed style). How can...
I have the following HTML code:
<body>
...
<div id="users">
<iframe src="http://control.intranet/userlist.php" height="100">
</div>
...
</body>
Where the //control.intranet/userlist.php loads a list of users from our intranet control panel.
This list looks like this:
<div class="user">
<span class="name">Boda Cydo<...