Hi,
I'm using the flashembed method of jQuery Tools library to set up a sifr, but can't seem to get it to work. I've followed their example: http://flowplayer.org/tools/demos/flashembed/jquery2.htm
For me all it shows is a flash movie with a white background showing the text: Rendered with sifr3 revision 436. I think I might be missing ...
I have jQuery Ajax request that sends data to a PHP page that then insert a record into MySQL.
With my current setup, this all works fine.
However, as part of the PHP script, i use mysql_insert_id() to retreive the ID of the last record.
I need the Ajax Success function to return this ID value as a javascript variable.
PHP Code
if ($_...
hi guys,
i'm totally new to jquery and i was looking around to see if this can be done.
basically i have a xml tree structure that looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<RecentTutorials>
<Tutorial author="The Reddest">
<Title>Silverlight and the Netflix API</Title>
<Categories>
<Category>Tutorials</Cat...
Hi,
I want to do display time-changing data on a web page. I use the JQuery framework. I use the following code as a test : display a different random number each second. It does not work. Why ? What is a correct, working way ?
<html>
<head>
<title>test</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></scrip...
I am trying to write a generic code
var rodd = $('#checkBox');
I want to pass rodd to a function and check if it is checked
Callme(rodd);
$(rodd).click(function() {
Callme(this);
});
function Callme(rodd){
if(this.checked){
// do some behavior
}
}
...
I've set up a simple jQueryUI progressbar:
<script type="text/javascript">
$(function() {
$("#progressbar").progressbar({
value: 35
});
});
</script>
<div id="progressbar"> </div>
Now, I'd like to color the of the bar based on it's...
So I have a form;
<label for="name">Job Date</label><br /><input id="name" class="required" title="Enter a name!" name="name" type="text" />
and some Jquery to cycle through each input with class "required" and see if it is empty/blank and if so give this input a red border color, and also the label assosciated with it a red color;
f...
How to call a JSF action mehtod thru jQuery AJAX?
...
Hi
I'm very new to both of these so please forgive my basic question.
I have an index page like:
<div id="SearchBar">
<%= Html.Encode("Search by Site Name: ") + Html.TextBox("SearchTextBox") %>
<input type="submit" value="Search" id="jQuerySubmit" />
</div>
<div id="SiteList">
<% Html.RenderPartial...
hi,
I am having an issue with parsing XML with JQuery when there is a node with an option node
<preferences><dashboard>
<report id="si_pg_vw" order="0">
<header>
<data>
<option type="reportname" value="Page View"/>
</data>
</header>
</report>
the following code in firebug returns no children
$reportElement.find("...
I have a small snippet of HTML
<div id="description"> Text with not paragraph tag</div>
Is there any way in CSS or JQUERY to address this?
...
Hi, I am facing one small issue. I want to change the parent div style as the content of the div increase its text chars.
<div class="welcome-message"><a href="#">Some link</a></div>
this is the format of the html. lets say it the link text has min char 80 chars, if its more than 80 then the style of the parent div should be change ie...
Hi All,
Im wondering how I would get the text of a nested list item without getting the text of its children i.e.
<ul>
<li id="node">
I want this
<ul>
<li>
I dont want this
</li>
</ul>
</li>
</ul>
Now using jquery with $('#node').text() gets me all text, where as I just want the "I want ...
Hi,
i have a big table and need to set CSS-classes on it etc.
So i clone the table into a documentFragment to prevent the browsers reflow for each touched DOM-property etc. The Problem is, i set much of $.data and have $.live events appended to the tables TD's.
So the question is, how can i preserve the $.data of the table for the new t...
I am developing a site in which i need the search result should be displayed 10 by 10. For that the result should be displayed through JQuery. Please Help. Any Code snippets or references will be highly appreciated.
...
I came to know the Jquery Pager Plugin is nice. But in the demo of that plugin they used only some texts to display in the paging. But I need to display the database recordsets results in paging. I need help Any help will be appreciated
...
Hi,
I'd like to create a chart that breaks down my yearly transactions on a monthly basis and gives me the total sale per month.
I have a table with every transaction and its date.
I'd like to use jquery to do this.
What is the best way to go about this?
...
I have a Fancybox (or more accurately) a number of fancy boxes on an asp.net page.
My Fancybox (jquery plugin) works fine until a postback occurs on the page then it refuses to work.
Any thoughts? Anyone experienced similar behaviour?
UPDATE : Some Code..
I have a databound repeater with a fancybox on each repeating item.
They are i...
I want to create a page that has a dropdown and an iframe, so that the iframe location will change based on the url in the dropdown. What is the correct syntax to get jquery to update the iframe's url?
thanks
...
Hi Guys
I have created a tabs by jquery and i want to display different data from database at each tab how can i do that knowing that it is the same container and same data but with different conditions hope to find an answer soon
And i am using php and javascript
Thanks
...