Is there a way to delete old threads that I started? They have links to my website and I'm still getting hits from users. The website no longer contains information referenced in the threads. The threads do not have the "Edit" button any longer.
jquery and a button delete, for remove rows of database.The problem is that I do not know how must input checkbox by clickable with click delete button sent to php code?my jquery code:
I have a shopping cart where if a user have problems of buying products or transactions, I want to give support via a chat programme. I want to reply users in different chat threads not like in a chat room as other people dont want to see others chat.I am new to this subject.
I'm interested in learning Javascript with an eye towards using it for client-side user interfaces for web services, and I have a couple questions.
First -- In reading some of the archives here, I've noticed a fairly strongly held opinion that it is better to write purpose-built Javascript than to use large libraries. Since this was what I was planning on doing anyway, because of the size of the libraries and compatibility quirks with Safari, it's nice to hear confirmation from experts. That said, is the code in Prototype, Scriptaculous, and OpenRico good enough to be worth reading and emulating?
Second -- I do much better with dead-tree references than with the web, especially as a lot of the links that come up when I google for Javascript topics are tutorials for the clueless by the clueless. (Perl has the same problem, but with Perl I have enough knowledge to filter the useful bits from the flat-out wrong bits.) Aside from the O'Reilly Javascript reference (which I have) and _Ajax Hacks_ (which I also have), are there other good references I should get my hands on?
Via Textpattern I am trying to create a vertical scroll of text on this page, bottom left below the html marquee I am trying to supersede:[URL]... It simply shows all my text without scrolling. Anyone have any clues as to what I might be doing wrong?
I need to return several values and I'd rather do it all in one ajax call. However there doesn't seem to be anything in data. Perhaps I'm way off here.
Need som directions to find my way. First contact with jQuery. I want to auto refresh part of a page in a WordPress blog. already have a page geting the resoult i want from a include_result1.php and include_result2.php Want to make this results to be updated for visitor every 1 second. I am Using this:
When i run this page the result from 1 and 2 keeps blinking alternation from one to another. It is very ugly. Is there a way to get this results beeing updated but in a quietly way as live content?
ok, here's the background on my "lets learn jquery" debacle ... I have downloaded it (plus the UI) and that demo index.html loads and functions perfectly.
well, I can create a brand new .html document, and include just the jquery.js and perform something, and it will work ... here's the thing, if I change *anything* in the source file, the content in firefox will not refresh ... I could even delete random tags, including the <body> tags, the <h1> tags and text ... and it will just not carry over to the browser. And, if I view the source on firefox it will show a random amount of lines removed from the bottom of the .html file
what in the world is happening ... it is driving me crazy that i cant figure this out. (btw i'm using jquery1.4.4 on centos5.4 + apache2.3.3, and firefox3.6.6 from win7 if it matters)
to recap, if i start with a blank/fresh/from scratch file it will work as designed ... but as soon as I change anything, adding or removing code/content, it blows up randomly displaying content (even old content that isnt even saved in the .html file anymore!)
Im having a bit of trouble with the bounce show effect from jquery ui. To see what I mean, check out my development site. Anytime you modify a part in this computer builder, the rigth side gets updated. Right now its removing and adding list items. Problem is when click items too fast, the animation doesnt finish and the next item gets bumped lower and lower.
(cant change typo in subject "my" "by") I have a script that deletes a model inside my client by a name however I only want it to delete once. here is my script:
Code: if (shape.name == itsdoof){ var shape_info = o3djs.picking.createShapeInfo(shape, sketchup [ii]);
the var shape_info = o3djs.pic..... bit is the script that deletes so ignore that however where it has if (shape.name == name) is there anyway to make it only pick up one shape.name and not all of them?
that's actually a "Delete" link , when I click it, there's a some sort of loading animation like stuff , similar to the thing that appears when one clicks the edit button of a thread here in this forum..then and it deletes the data and doesn't need to refresh the page, i guess it is ajax.....it's not my code.. now I was asked to alter it and use a pop up box to ask the clicker "Yes" or "No" before deleting the data , what or how to change that code snippet i pasted above
I have a 4row x 1col table, I would like to drop all the content of row three. Since Mac IE5.2 does not suppport deleteRow method, I have also try to set the innerHTML='' but it does not work. How can I delete the node from DOM in other way?
When somebody logoff I clear few cookies that I set from my clents browser. I was wondering is there a way to write a javascript so that it also clear cooke set by someone else from the broswer.Suppose there is a cookie name LoginIBM can I clear that one too?
i created this little script that creates dynamically a row. my problem is that when i want to delete a row it always deletes the last one, they way i have it mind that it will only delete the selected row. Code:
if (confirm("Are you sure you want to delete '" + title + "'")) { window.location.href = 'http://www.example.com/delete.php?t=' + type + '&id=' + id; } else { return false; }}
i have a soccer-site, on which of course, can be kept track of played matches. Now the admin has to be able to set the number of goals, and then select who scored what goal.
I want a system where one can put a number in a textfield (NaN would return an error). Say the admin enters Ɖ'. Then three dropdown lists appear below that field, in them are the players. If he turns Ɖ' (goals) into ƈ', the lowest one has to be deleted, but the upper two have to stay, with an unchanged (already selected) value ...
Preferrably cross browser. I just can't seem to figure out, i've tried loads of innerHTML and document.write(), both didn't give me what i wanted (yet).
I have a list called drawPathList thats just a list of xy coordinates. I use this to construct a drawing on a map. However, people would like to be able to 'Undo' something that they have drawn, so I'd like to yank that last item in a given list.
drawPathList looks like this: 23,34||45,67||456,678||43,78
Can someone help me with a function to remove the last item in the list (regardless of length)?
I'm used to C/C++ where if you "new" something you really need to "delete" it later. Is that also true in javascript? if i do "mydate = new date();" in a function and dont "delete mydate" when the function exits do i have a memory leak or other trouble brewing?
ie: function MyFn() { var mydate;
mydate = new date(); }
does the above function present a problem (what if its called over and over and over etc)? or is the allocation automaticaly freed on function exit?