I'm trying to create an unordered list dynamically and then turn it into jQuery UI tabs...
I think I'm having problem with syntax here, I managed to create the list and turn it into the widget, but those tabs don't look right, they have the outline of the widget but the content doesn't have actual tabs, so my guess is it only 'kind of w...
Hi, I'm trying to load a different fancybox page every time someone clicks one of the links on the left menu.
example: http://cupones.com.ec/stackoverflow/
I am using the Facebox image and content viewer plugin. The first link "pizzerias" loads an image with no problem. However there is a problem displaying the second "mexicanos" lin...
Hello, I have a quick question about JQuery. I have dynamically generated paragraphs with id's that are incremented. I would like to take information from that page and bring it to my main page. Unfortunately I am unable to read the dynamically generated paragraph IDs to get the values. I am trying this:
var Name = ((data).find("#Name"...
I'm sure most of you have seen the CNN type alerts, the ones that flash at the top of the screen when the administrators want to. Is this already done in Drupal?
I am thinking you would need some kind of jQuery for the animation, simple enough, but what mechanism would you need to allow the user to X the alert away, and not show it agai...
I'm using Jquery ui on my university's website but they are using Serena Collage with prebuilt templates with their own styles.
The widget im using works in firefox but not ie7, which is kind of buggy.
The mater template's css is obviously the culprit.
How do I !important the Jquery UI css file or easily !important a whole style.
...
I'm doing something that involves ajax auto-completion of phrases in a <textarea>. I've got this working well using the jquery autocomplete plugin; however, it is hard-coded into this to position the popup below the <textarea>.
For what I'm working on, the <textarea> is at the bottom of the page; I ideally want the options to appear abo...
Using jQuery, what is the most simple and elegant way to re-select an item in a <select> dropdown list when given chosen_value=111?
What if it is checkboxes instead of <select>, having id[]=11&id[]=12... (the [] are actually in %5B%5D)
...
Hi all, am showing a list of emails, and for each email on click, am trying to create a popup, to show the full email content....
the prob is that, popup works only for 1st email, for rest it doent show anything,
here is my code,
foreach ($email as $x){
echo "<div id='popuup_div' class='popup_msg'>";
echo "<d...
How to position the fancybox 100px from top by default it is center aligned.
I believe there is no api settings for that. Can anyone help me out in doing it on the actual script.
...
I have a link that a user selects, to display a paragraph, once they select it, I want it to display a different image, initially the image will be a plus (+) sign, to visually communicate that it can be clicked to slide down the content to be seen, and once it is clicked, I want it to change to a minus (-) sign, so they can click and it...
In my application when I person selects an item at the bottom of the select box the area is reloaded with another select box. My problem is when the select box is loaded it scrolls to the top instead of scrolling to the selected item
observe here
http://www.jaunna.com/question/Add
UserID: top
Pass: t
...
Hi,
In my application i am using
$(document).ready()
What is the difference between this and
$(document).onload()
Thanks in Advance
Dean
...
I need to implement a feature where a user can paste one or more YouTube links, a PHP script then downloads all of them to the server, displays progress bar for each download and then inserts relevant information about them to database.
How should I go about implementing this... Is this achievable with just file_get_contents()? Or perha...
I'm making a form and when a user hits submit, i want it to hide the form and show a section that says "thank you, blah blah"
I'm using PHP/PEAR Mail Factory:
$mailObj =& Mail::factory('mail');
$bool = $mailObj->send($recipient, $headers, $body);
if($bool)
echo "Thank you for your submission.";
else
echo "There was a problem ...
I have a basic DOM "outline" that contains a table with dummy data like this:
<table>
<tr>
<td>name</td>
<td>phone</td>
</tr>
</table>
My script uses this as a dummy row to clone and replace the text between the TD tags with text from a database. Without copying the whole script here, here are two different things I've tri...
I am trying to take the contents of 'description' and place it into a div.
Below is the XML that comes from a jQuery ajax call.
<media>
<entry>
<title>Item Name</title>
<description>
<p>First Line<br />
Second Line</p>
<p>More Content</p>
</description>
<author>...
I am trying to have tooltip for my personal website http://www.stacked.in. when I move the mouse on the link, I want to have tooltip displayed. Tooltip display content is already available inside the html page as a div element, but it is hidden. I want the tool-tip to be displayed only when I move the mouse over the link. I use jquery an...
There are 2 radio buttons. Depending on which one you click, the drop down box will load that set of data. Depending on the first one I click, that one will take about 1-2 secs to load, while the other loads instantly. Even click back and forth. I was wondering why, and how I might be able to have it stop loading instantly (weird, I know...
I'm using the following snippet:
$('input[value=NEW]:hidden').attr('value', '').parent().parent().animate({
backgroundColor: "#FF9933",
duration: 800
}).delay(500).animate({
duration: 800,
backgroundColor: '#ffffff'
});
Howe...
See this code:
var MyObject = new function() {
this.tos = new Array();
this.show = function() {
this.clearTimeouts();
$("#divExample").slideDown(null,function() {
MyObject.tos[MyObject.tos.length] =
setTimeout(function(){MyObject.doSomething();} , 1800);
});
return;
};
this.doSomething = function...