Posts by Will • 86 points
9 posts
-
0
votes2
answers55
viewsA: I cannot delete a range of words in a string
You could use a regular expression http://php.net/manual/en/ref.regex.php On the website below you test your regular expression. http://regexpal.com/ Simple example in javascript Regular Expression:…
-
0
votes2
answers636
viewsA: Foreach in Foreach
You need a category x gallery template, then you would hold a foreach first in the category and then in the category list of galleries, which would be a category attribute. Ienumerable Another…
-
3
votes3
answers4489
viewsA: Like "startar" a Node server?
In windows Node provides the nodevars.bat file that assigns the path to Nodejs and NPM operation to the PATH. C: Program Files (x86) nodejs or C: Program Files nodejs To keep the application running…
-
1
votes3
answers48474
viewsA: Getting input value with jQuery
Just as improvement recommend using the: $(this).val(); So you promote the reusability of this event. Hugs
-
0
votes1
answer37
viewsA: Server response javascript, field coming with a method/Function?
It would be an injection of code (JS) ? If you are you need to run "Eval": eval("(function(){ alert('Hello!'); })()"); http://www.w3schools.com/jsref/jsref_eval.asp…
-
1
votes1
answer295
viewsA: Problem when installing Gulp
What version of Nodejs ? If not 0.12.x recommend updating! You have installed Gulp in a global way ? npm install -g Gulp
-
2
votes1
answer363
viewsA: Validation ASP.NET Form in Bootstrap Tabs
You can identify the elements with error by "class", as you are using bootstrap I believe the class is "has-error". Identifying the elements you can identify which tab they belong to through the…
-
0
votes1
answer52
viewsA: socket.io inside express.js or vise versa
I didn’t quite understand the problem, you need that every post "/login" be sent a message to the "Connection" System" ? If this is the problem you need to start the Express-independent "Connection"…
-
0
votes1
answer114
viewsA: using sortable dynamically
From what I understood it would be to add a new text box in the button area by performing a "clone". http://jsfiddle.net/bqe3t523/ $('#content').sortable({ items: 'ul', revert: "invalid"…