Hello.
I wish to accomplish a simple task (I hope!)
I got two div tags and 1 anchor tags, like this:
<a href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>
What I wish to accomplish is use the anchor tag to toggle between the two div tags, hide the one a...
I have an iframe that contains a page that is constantly updating (basically a logger type thing). Is there a way (either via JS/jQuery or otherwise) to force the iframe to stick to the bottom of that inner page even as it expands?
I basically want to mimic the way may log viewers stick to the tail of a log file as it is updated. I foun...
I don't hear much about GWT any more.
When it first came out, it seemed to be all the rave in certain RIA circles.
But lately my impression is that GWT has suffered a dip in popularity because solutions like Jquery/MooTools/Prototype offer a much easier way of solving the same problem.
Is this accurate or does GWT solve a different ty...
I am trying to create an object where a user can click and drag to have the effect of a pull motion. Any idea how I would do that with jQuery? Pulling down a container that is hidden off the screen. Would I use drag?
Thanks,
Ryan
...
How do I access Jquery Treeview inside the .aspx file upon form submit?
also, Can I add nodes to Jquery Treeview on the fly? (on the client side)
I am using asp.net web forms, c#
EDITED:
someone mentioned the following in one of the questions:
"on form submit, someone is going to have to write code on the client to collect that data a...
Hi all
i'm using Jquery's load() method for reterive some data when user click on button.
Then show the result in . It is ok.
But the problem is i don't know how to catch error in load() when error occure while data reteriving.
Please help me.
Thanks
...
Hello, I'm little confused here now. Let me explain:
I've seen people talking about adding a button or some other control to the page in asp.net (3.5) and when the control renders it changes the Id of that control, eg. Button1 becomes Button1_somethingsomething which prevents them from using jQuery and what they end up using is somethin...
The title says it all - how can I use jQueryWTP with Eclipse 3.4? I have patched the jar file, and verified that it contains the jQuery info, but I still get errors when I open a file with $(...). From what I've found while looking for a solution, this works in Eclipse 3.3, and others are having problems with Eclipse 3.4. All help is ...
Hi,
I recently came across DUI (diggs user interface) which implements jquery and gives you the ability to create classes, with jquery etc.
I can't seem to find any reviews.. i saw one comment to say it wasn't up to much.
I was wondering what everyone else is using with regards to separation of concerns with jquery
Do you use some ki...
Hi everyone!
I'm using this to save some data to DB:
$("#btnSave").click(function() {
$.ajax({
type: 'POST',
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
data: 'description=' + oEditor.GetXHTML(),
url: '/SuperAdmin/ReceiveData/',
success: function()...
Hello. I have a problem with using the jQuery JSONP function $.getJSON in CodeIgniter. The url from which the json is grabbed from is:
http://spinly.000space.com/index.php/admin/isloggedin
Now, the problem, is that I have a demo.html file that runs the $.getJSON function and grabs the data from the url I denoted above.
DEMO.html l...
I am nearly done with my site and am optimising it at the moment; I would like to know the best and fastest way to include all my external javascript files. I want the site to download as quick as possible, but it has quite a few (10 or so) external javascript files that need to be loaded; some are jQuery library files from Google's AJAX...
I am currently working on a web application that has been created using a magnitude of frames that stretch down up to 5 times, The issue is that i need to preform some jquery magic throughout the website.
What would be the best way to go about this (other than rewriting it which i have considered)?
EDIT:
The Frame Structure is somethi...
Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all?
I know it would work if they were a style attribute with attr(), but all of my styles are in an external style sheet.
Thank you Stackers
...
Hi,
how do I retrieve the text between the href tag?
<a href="blah">GET THIS TEXT</a>
It is wrapped in this DOM:
<div class="c1">
<div class="c2"><a href="#">GET THIS TEXT</a>
</div>
</div>
...
I want to disable links in a page.
I used the function below, which is working in FF3 & IE7, but it is not working on IE6.
$(document).ready(function() {
$("a").attr("href", "")
.unbind("click")
.click(function() { return false });
});
...
I am finally getting around to really implementing some jQuery solutions for my apps (which is seeming to also involve a crash course in javascript).
In studying examples of plugins, I ran across this code. I'm assuming the author created the zero length timer to create some seperation of the running code, so that the init functon would...
Old hand with Prototype, new to jQuery, and writing a simple app to get a feel for the framework (and because I want to use it). I've got an HTML fragment that I load via AJAX, and I want to stick this at the top of a div, with a slide-in transition animation.
This bit works, and does the prepending bit:
// Get the HTML fragment and s...
I have a div defined as the following in my css file:
#toolbar
{
position:relative;
top: 0;
height: 50px;
background-color: #F4A83D;
width: 100%;
text-align: center;
display: hidden;
}
Then, in my HTML file I have:
<div id="toolbar">
TestApp ToolBar
...
I have a server side function that requires login. If the user is logged in the function will return 1 on success. If not, the function will return the login-page.
I want to call the function using Ajax and jQuery. What I do is submit the request with an ordinary link, with a click-function applied on it. If the user is not logged in o...