I mean... Let's that we just make an AJAX request and inser the result inside a div#result..
In the backend the script use ob_flush() to send the header but not terminate the request until it's terminated (with exit or ob_flush_end)
The content will be loaded into the #result only when the request terminate (exit or ob_flush_end) or it...
Hi
i have the following format :
<div id="container1">
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
</div>
<div id="container2">
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
</div>
I want a jQuery...
i would like to increase the size of the content width on this page:
http://www.yoursdproperty.com/index.php?option=com_jumi&fileid=8&Itemid=34
i would like to stretch it out so that all the content fits
i am not sure what to change in the CSS file:
http://yoursdproperty.com/templates/pjo_joomlaforall/css/template_css.css
pl...
Are there any opensource / free alternatives similar to the mxGraph javascript library besides gRaphael and Raphael?
...
I'm having a little issue with an application I'm making. I have a page where the user edits a document via dragging modules into the page or "canvas" area.
When the page is loaded, javascript haves the modules collapsible (like above). However after the user drags in a new module the effect is applied again some new modules can col...
is there a firefox plugin that will let me ignore a certain snippet of code?
If I turn off js, the page loads but I can't get to the admin because that requires js.
I would like to leave js on, but have my browser simply ignore a couple lines of code.
Possible?
Thanks!
...
Hello everybody.
I have been building widget that accept user input and then once everything checked it will redirect user to the original web site.
However the best I achieved for now is that redirect will be opened in parent window rather then in new window.
Right now I am using
$(parent.location).attr('href', asoRequestURL);
Ho...
Hi jquery/javascript gurus,
I am trying to use jquery ajax function to populate the dropdown, it works fine with FF, but IE give the javascript error snow below in the scrnshot. howver IE does get the data and selects it.
Am i doing something wrong?
function getAjaxFunction(thisval, curval) {
$.ajax({
type: "POST",
...
I'm using some third-party controls that use an older version of the ASP.NET Ajax library, but also would like to use some features of the newest version of said library. The problem, naturally, becomes dealing with the clashing namespaces. Is there a way to wrap the newer Ajax library in a separate namespace so I could use them independ...
I'm new to jquery, and I have a bit of a problem.
What I need to do is have one div as my main slideshow. That seems straightforward enough.
However, I would like another slideshow div to change next, ( containing a bit of text ).
So the change path would be:
div 1 change, div 2 change,
div 1 change ,div 2 change,
And so on.
Whe...
I made my own simple WebSocket server in Python but Chrome 4.0.249.78 dev (36714) ALWAYS disconnects after the handshake. To make sure it wasn't my code I used the WebSocket server found at http://stackoverflow.com/questions/2153294?tab=newest#tab-top to test it and got the same result (below).
listening...
connection!
GET / HTTP/1.1
Up...
I have a simple function that computes the difference between two text fields: txtItemAmount1 and txtAdjustmentAmount. The difference it placed in a label (Difference).
The problem I'm having is that by clicking the "Add Row" button, the user can add more "txtItemAmount" rows. I would like all of these rows to be included in the calc...
Being interested in building html chunks off-dom before to insert them in the dom, I have done some testing using dynatrace. I used bobince's method :
http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643512#1643512
I found it to be almost 1000 time slower (in IE7), which surprised me ...
Hi,
In the slide show code below, there's a function to press "previous" and "next" links. The "next" one works fine, and if you keep pressing it, it cycles through all the slides.
The "previous" one is a bit messed up, for some reason - it will go back a slide or two but then it will just go blank!
Could you please help?
Thank you!
...
I have a one page web app so there is no page refreshing. Sometimes I leave the page open overnight and I come back in the morning and start interacting with it again. Usually I find I have to refresh. Javascript performs incorrectly - edit-in-place loads weird data, ajax calls don't fire... It's nothing to do with the backend, it seems ...
Subj.
For example...
<a href="#" act="check_all" with="category_checkbox">Check all</a>
<p>
<input type="checkbox" name="category[1]" tag="category_checkbox" /> Category 1
<input type="checkbox" name="category[2]" tag="category_checkbox" /> Category 2
</p>
PS: What advantages and disadvantages of this method? Please ex...
I need to , well, dive into client side programming. Is there an equivalent to 'Dive into python' for jquery?
I see that jquery 1.4 has been released. Does this change anything w.r.t answers?
...
Hi folks,
I'm attempting to parse some Wiki-style markup using the Javascript Creole Wiki Markup Parser as found here. I'm attempting to extend the parser to parse div tags like so:
Markup: << any_content_here <<
HTML: <div class="left">content</div>
Markup: >> any_content_here >>
HTML: <div class="right">content</div>
Markup: ^^ an...
I have a written a jquery plug-in which pops-up a div section on hover over an element, and I need to deal with the "select z-index" bug in IE6 (http://blogs.msdn.com/ie/archive/2006/01/17/514076.aspx). So, if running in IE6, my code needs to hide some select boxes on the page, when the pop-up div is visible.
My question is: In trying t...
I would like to convert an entire form of data to a javascript object.
<form id='myform'>
<input type='text' name='field1' value='foo'>
<input type='text' name='field2' value='bar'>
</form>
would convert to a javascript object...
{
field1: 'foo',
field2: 'bar'
}
...