|
Yes, and the Firefox website is the place to find them.
|
|
|
|
|
Nonsense. You did not define any technical requirement, so how could we possibly bring you a meaninful answer.
I flagged this as spam as it is blattantly an attempt to post a link to your blog.
"I'm neither for nor against, on the contrary." John Middle
|
|
|
|
|
relax bro , i need a fire fox plugin to search for javascript customization.. just asking any firefox plugin, doesn't mean a spam. if u feel this is a nonsense . its okay but dont get tensed
|
|
|
|
|
I'm not your brother, and I'm very relaxed. Just, your question has no decent meaning.
Let me translate your question if it were about cars, for example:
"I want some stuff for my car, that can do things. Went to car-stuff store but did not find anything."
How would you answer such a question?
"I'm neither for nor against, on the contrary." John Middle
|
|
|
|
|
Bro means just a formal word. no need to get too much tensed on this . i just asked generally " is there any plugins available for website or blog " none needs to do some mathematical research to answer this question. if it is avail , some one will refere me the link , i will check it out and add it or else i will leave it . if you find this general word is very ununderstanding to you , thats your opinion.
|
|
|
|
|
A word to the wise ... A simple, informal (not formal as you stated), inoffensive word in your culture can be incredibly insulting to someone in another culture.
Example: Urban Dictionary: bro[^]
and When did "bro" become a fair insult? : OneY[^]
In this community it is generally used by people who can't be bothered to do their own research, homework, coding, etc.
Hence, it is quite an offensive word to use here when referring to those members who give up considerable amounts of their free time to guide their future colleagues.
|
|
|
|
|
I need a high quality information technology content writer person or a company??
Any tips??
Thx all
|
|
|
|
|
AhmedOsamaMoh wrote: Any tips? Find a website that advertises such services.
|
|
|
|
|
There is a game which describes few famous people in paragraphs each at different level. Each of the descriptions were listed with an unique number in a text file.
Guess how the creator did that?
I want to create a group of HTML files taking text from single text file and each HTML page shall take text having unique id from that file.
Is it possible?
(Say, I write lyrics of multiple songs in a text file giving each song an id and clicking or touching of a link of a song on an HTML page produces a song lyric page taking related text from the text file.
How to do this?)
Please help.
|
|
|
|
|
This is what we all do every day. But it will require you to learn programming and since there are millions of ways to do it, we can't really give you a full answer here.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Please would you tell me any one of the million ways? Any hint might be helpful. 
|
|
|
|
|
Start with what language you want to write it in.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Hahaha
So how should I start in AngularJS?
|
|
|
|
|
I haven't used AngularJS so I can't give you specifics there. I'd suggest going through tutorials to learn. All you need to do is pull data from a db and put it on a page. Like I said, that is programming 101. Or even pull from the file system but then you need to worry about permissions on the files.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Okay thank you 
|
|
|
|
|
referenced
https://www.codeproject.com/Articles/331986/Table-Row-Drag-and-Drop-in-ASP-NET-MVC-jQuery-Data?msg=5450831#xx5450831xx
but getting error
Uncaught TypeError: $(...).dataTable(...).rowReordering is not a function in row reordering
|
|
|
|
|
Do not repost the questions on different forums. The author of that article will try to get back to you once he has a solution.
Also, none of the questions are considered urgent here. Members visit, and help as needed and wanted, and we are not paid to do so.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
Then likely $(...).dataTable(...) is null or you have not loaded a js file that you were supposed to.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Hey everyone,
I need some help. I m looking for a solution to replace automatically our customers phone number by a virtual extension. Let me explain, if the phone number of a customer is 123.455.7890 ( his real phone number)we want to replace his phone number by a basic phone number, example 800.123.4566 with an extension, exemple 1234 .
We have many troubles, our website is scrapped non stop, our customers (currently 8000) receive many call from everywhere 24/24... we add a first security : need to click to see the phone number... scrapped! Second security, need an account to get access to phone number... scrapped... I know solution exist: each phone number can be transferred to a virtual phone number... problem, that cost a lot (and our service is free), second solution, to attribute an extension for each customer. You call a phone number, a voice message ask you extension and that transfert the call to the customer... that going help us secure our customers and track all call.
The website zumper.com use this solution. Do you know any company, api, solution? In advance, thank you.
|
|
|
|
|
Ha! Sounds similar to what we had to do in the adult telephony content delivery space when I was doing that!
I'm sure it can be done, but probably not cheap.
|
|
|
|
|
This is not for adult industry;) we re not looking for a cheap solution but for a good solution.
|
|
|
|
|
Hello all. This is my 1st time using this so apologies if I haven't got this in the right posting category or if my wording is horrible.
Anyways, what I wanted to query: so I'm trying to send an array from a javascript page to another PHP page. Separate files. Here's the javascript:
var purchase, sendDB;
purchase = {"Boots":"100","Phone":"800","AK":"600"};
sendDB = JSON.stringify(purchase);
$.post("http://localhost/POS_Proj/POS_DB.php", sendDB, function(){
alert("sending purchase data to php.");
});
So in the $.post part of the code the callback does its thing and gives the alert. So in theory there's nothing wrong with that part of the code.
Here's what I currently have for the php side:
header("Content-Type: application/json; charset=UTF-8");
$recData = json_decode($_GET['http://localhost/POS_Proj/testFront.php'], false);
I'm just trying to get the php to actually accept/handle the data sent from the javascript. If anyone can point me in the right direction or any sort of advice would be much appreciated
Thanks
|
|
|
|
|
$_GET is for retrieving variables from the query-string; and the parameter is the name of the variable to retrieve, not the URL of the page that sent the data.
You would normally use $_POST to retrieve values from a posted form. But in this case, you're submitting a JSON string instead of a form.
This StackOverflow answer should help: rest - How to get body of a POST in php? - Stack Overflow[^]
$sendDB = file_get_contents('php://input');
$purchase = json_decode($sendDB);
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thanks. Does it matter that I'm using this in Xampp. I try to print $purchase but nothing happens. Am I just being special. I understand that file_get_contents returns a string then json_decode returns an object.
|
|
|
|
|
I don't know - I don't use PHP or Xampp.
You could try echoing the raw request data to see if the JSON is being passed correctly:
echo file_get_contents( 'php://input' );
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|